/* Options: Date: 2025-05-04 22:46:32 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: NewBillable.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IPost { } /** @description Report/create a new billable */ // @Route("/billables", "POST") // @Api(Description="Report/create a new billable") export class NewBillable implements IReturnVoid, IPost { /** @description The account to associate the billable with */ // @ApiMember(Description="The account to associate the billable with") public accountId: string; /** @description The customer to associate the billable with */ // @ApiMember(Description="The customer to associate the billable with") public customerId: string; /** @description The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID) */ // @ApiMember(Description="The session ID to associate the billable with. You must specify either this or (AccountId + CustomerID)") public sessionId: string; /** @description The call SID to report */ // @ApiMember(Description="The call SID to report") public callSid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'NewBillable'; } public getMethod() { return 'POST'; } public createResponse() {} }