/* Options: Date: 2025-05-04 22:17:46 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: GetBilling.* //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 BillingCustomerInfo { public customerId: string; public internationalCosts: number; public hasCallRecording: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BillingInfo { public customers: BillingCustomerInfo[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Get the billing totals for the specified date range. Please note that we do not support getting billing at the hourly time granularity. */ // @Route("/billing", "GET") // @Api(Description="Get the billing totals for the specified date range. Please note that we do not support getting billing at the hourly time granularity.") export class GetBilling implements IReturn { /** @description Your Evo Voice Account ID */ // @ApiMember(Description="Your Evo Voice Account ID", IsRequired=true) public accountId: string; /** @description The start of the date range that you want to query for (we will only use the date portion, so it will include the entire day even if you specify a time as well) */ // @ApiMember(Description="The start of the date range that you want to query for (we will only use the date portion, so it will include the entire day even if you specify a time as well)", IsRequired=true) public startDate: string; /** @description The end of the date range you want to query for (we will include this entire day in the billing) */ // @ApiMember(Description="The end of the date range you want to query for (we will include this entire day in the billing)", IsRequired=true) public endDate: string; /** @description Specify this to filter to a specific customer. */ // @ApiMember(Description="Specify this to filter to a specific customer.") public customerId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetBilling'; } public getMethod() { return 'GET'; } public createResponse() { return new BillingInfo(); } }