/* Options: Date: 2025-05-04 22:00:27 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: GetCustomerFieldValues.* //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 FieldValue { public displayName: string; public value: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetValuesResponse { public fieldValues: FieldValue[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get values for customer fields */ // @Route("/values/customer", "GET") // @Api(Description="Get values for customer fields") export class GetCustomerFieldValues implements IReturn { public accountId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCustomerFieldValues'; } public getMethod() { return 'GET'; } public createResponse() { return new GetValuesResponse(); } }