/* Options: Date: 2025-05-04 22:06:30 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUniqueEndpointValue.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export class GetUniqueEndpointValueResponse { public value: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get a unique number string value for an endpoint field */ // @Route("/values/endpoint/unique", "GET") // @Api(Description="Get a unique number string value for an endpoint field") export class GetUniqueEndpointValue implements IReturn { /** @description The account ID you are interested in */ // @ApiMember(Description="The account ID you are interested in") public accountId: string; /** @description The endpoint field you want a unique value for */ // @ApiMember(Description="The endpoint field you want a unique value for") public fieldName: string; /** @description The prefix to use for the value */ // @ApiMember(Description="The prefix to use for the value") public prefix: string; /** @description The length of the value */ // @ApiMember(Description="The length of the value") public length: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetUniqueEndpointValue'; } public getMethod() { return 'GET'; } public createResponse() { return new GetUniqueEndpointValueResponse(); } }