/* Options: Date: 2025-05-04 13:54:26 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: TestSchedule.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Schedule { public timeZoneId: string; public inherit: boolean; public forceClosed: boolean; public rules: SchedulingRule[]; public defaultState: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class TestScheduleResponse { public stateName: string; public timeZoneId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Test the customer's schedule */ // @Route("/customers/{customerId}/test-schedule", "POST") // @Route("/endpoints/{endpointId}/test-schedule", "POST") // @Api(Description="Test the customer's schedule") export class TestSchedule implements IReturn { /** @description The ID of the customer whose schedule you want to test */ // @ApiMember(Description="The ID of the customer whose schedule you want to test") public customerId: string; /** @description The ID of the endpoint whose schedule you want to test. */ // @ApiMember(Description="The ID of the endpoint whose schedule you want to test.") public endpointId: string; /** @description The schedule to use (leave null to use the current saved schedule) */ // @ApiMember(Description="The schedule to use (leave null to use the current saved schedule)") public schedule: Schedule; /** @description The ISO string of the date and time you want to test */ // @ApiMember(Description="The ISO string of the date and time you want to test") public dateTime: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'TestSchedule'; } public getMethod() { return 'POST'; } public createResponse() { return new TestScheduleResponse(); } }