/* Options: Date: 2025-05-04 23:11:38 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: ListCalls.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } /** @description Retrieve all calls */ // @Route("/billing/calls", "GET") // @Api(Description="Retrieve all calls") export class ListCalls implements IReturn { /** @description The account ID you are listing for */ // @ApiMember(Description="The account ID you are listing for") public accountId: string; /** @description The start date to retrieve calls for (YYYY-MM-DD) */ // @ApiMember(Description="The start date to retrieve calls for (YYYY-MM-DD)") public startDate: string; /** @description The end date to retrieve calls for (YYYY-MM-DD) */ // @ApiMember(Description="The end date to retrieve calls for (YYYY-MM-DD)") public endDate: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ListCalls'; } public getMethod() { return 'GET'; } public createResponse() { return new Array(); } }