/* Options: Date: 2024-07-03 13:54:32 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllBookingQueueForUser.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* 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") var UserId:UUID? = null var DateStart:Date? = null 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") 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") var IncludeCompanyInformation:Boolean? = null companion object { private val responseType = GetAllBookingQueueForUserResponse::class.java } override fun getResponseType(): Any? = GetAllBookingQueueForUser.responseType } open class GetAllBookingQueueForUserResponse { var BookingUserQueueResponseList:ArrayList = ArrayList() var ResponseStatus:ResponseStatus? = null } open class BookingUserQueueItemResponse { var BookingUserQueueId:Int? = null var CompanyId:UUID? = null var CustomerId:UUID? = null var ServiceId:Int? = null var From:Date? = null var To:Date? = null var StatusCode:Int? = null var StatusName:String? = null var SendConfirmationTime:Date? = null var Quantities:ArrayList = ArrayList() var Service:ServiceInfoResponse? = null var Company:CompanyInfoResponse? = null }