/* Options: Date: 2025-09-15 14:35:57 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RecurringScheduleIntervalsQuery.* //ExcludeTypes: //InitializeCollections: False //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="/schedules/recurring/intervals", Verbs="GET") @ValidateRequest(Validator="IsAuthenticated") open class RecurringScheduleIntervalsQuery : IReturn, ICompany, IInterval { /** * Company to show services for */ @ApiMember(Description="Company to show services for", ParameterType="query") override var CompanyId:UUID? = null /** * From what datetime to show times */ @ApiMember(DataType="dateTime", Description="From what datetime to show times", IsRequired=true, ParameterType="query") override var From:Date? = null /** * To what datetime to show times */ @ApiMember(DataType="dateTime", Description="To what datetime to show times", IsRequired=true, ParameterType="query") override var To:Date? = null /** * Here you can select one of the resource, if none is selected it will show available times for all */ @ApiMember(Description="Here you can select one of the resource, if none is selected it will show available times for all", ParameterType="query") open var ResourceIds:ArrayList? = null open var ResponseStatus:ResponseStatus? = null companion object { private val responseType = ScheduleIntervalsQueryResponse::class.java } override fun getResponseType(): Any? = RecurringScheduleIntervalsQuery.responseType } open class ScheduleIntervalsQueryResponse { open var From:Date? = null open var To:Date? = null open var Duration:TimeSpan? = null } interface ICompany { var CompanyId:UUID? } interface IInterval { var From:Date? var To:Date? }