(* Options: Date: 2025-05-04 14:31:43 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: TestSchedule.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Voice.Api.Customers open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Schedule() = member val TimeZoneId:String = null with get,set member val Inherit:Boolean = new Boolean() with get,set member val ForceClosed:Boolean = new Boolean() with get,set member val Rules:ResizeArray = null with get,set member val DefaultState:String = null with get,set [] type TestScheduleResponse() = member val StateName:String = null with get,set member val TimeZoneId:String = null with get,set /// ///Test the customer's schedule /// [] [] [] [] type TestSchedule() = interface IReturn /// ///The ID of the customer whose schedule you want to test /// [] member val CustomerId:String = null with get,set /// ///The ID of the endpoint whose schedule you want to test. /// [] member val EndpointId:String = null with get,set /// ///The schedule to use (leave null to use the current saved schedule) /// [] member val Schedule:Schedule = null with get,set /// ///The ISO string of the date and time you want to test /// [] member val DateTime:String = null with get,set