/* Options: Date: 2025-09-13 16:19:32 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: GetAllBookingQueueForUser.* //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="/bookinguserqueue/user", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) @ValidateRequest(Validator="IsAuthenticated") open class GetAllBookingQueueForUser : IReturn { /** * The user id for your profile. If not set it will set it automatically from your session */ @ApiMember(Description="The user id for your profile. If not set it will set it automatically from your session") open var UserId:UUID? = null open var DateStart:Date? = null open var DateEnd:Date? = null /** * If you want to include the service information for the booking */ @ApiMember(DataType="boolean", Description="If you want to include the service information for the booking", ParameterType="query") open var IncludeServiceInformation:Boolean? = null /** * If you want to include the company information for the booking */ @ApiMember(DataType="boolean", Description="If you want to include the company information for the booking", ParameterType="query") open var IncludeCompanyInformation:Boolean? = null companion object { private val responseType = GetAllBookingQueueForUserResponse::class.java } override fun getResponseType(): Any? = GetAllBookingQueueForUser.responseType } open class GetAllBookingQueueForUserResponse { open var BookingUserQueueResponseList:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class BookingUserQueueItemResponse { open var BookingUserQueueId:Int? = null open var CompanyId:UUID? = null open var CustomerId:UUID? = null open var ServiceId:Int? = null open var From:Date? = null open var To:Date? = null open var StatusCode:Int? = null open var StatusName:String? = null open var SendConfirmationTime:Date? = null open var Quantities:ArrayList? = null open var Service:ServiceInfoResponse? = null open var Company:CompanyInfoResponse? = null }