/* Options: Date: 2025-05-04 23:56:01 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: GetMyContacts.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export enum AppContactTypes { User = 'User', Team = 'Team', Contact = 'Contact', } export class AppContact { public displayName: string; public address: string; public type: AppContactTypes; public customerName: string; public canCall: boolean; public canChat: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetMyContactsResponse { public contacts: AppContact[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Gets the contacts associated with the authenticated user */ // @Route("/app/contacts", "GET") // @Api(Description="Gets the contacts associated with the authenticated user") export class GetMyContacts implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetMyContacts'; } public getMethod() { return 'GET'; } public createResponse() { return new GetMyContactsResponse(); } }