/* Options: Date: 2025-12-06 09:59:31 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: SchedulerConfigurationSaveRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/Scheduler/Settings", Verbs="POST,PUT,OPTIONS") open class SchedulerConfigurationSaveRequest : IReturn { open var Settings:SchedulerConfiguration? = null companion object { private val responseType = SchedulerConfigurationSaveResponse::class.java } override fun getResponseType(): Any? = SchedulerConfigurationSaveRequest.responseType } open class SchedulerConfigurationSaveResponse { open var ResponseStatus:ResponseStatus? = null open var Settings:SchedulerConfiguration? = null } open class SchedulerConfiguration { open var ConfigId:Int? = null open var SchedulerUrl:String? = null open var SchedulerName:String? = null open var DefaultLocation:String? = null open var DefaultSummary:String? = null open var DefaultDescription:String? = null open var DayStart:TimeSpan? = null open var DayStartFriendly:String? = null open var DayEnd:TimeSpan? = null open var DayEndFriendly:String? = null open var TimeslotDuration:Int? = null open var NumberOfSlots:Int? = null open var LocationId:UUID? = null open var CalendarId:UUID? = null open var AgentId:Int? = null open var TimeZone:String? = null open var AvailableDateTimes:ArrayList = ArrayList() open var AvailableServices:ArrayList = ArrayList() open var AllServices:ArrayList = ArrayList() }