' Options: 'Date: 2025-09-15 14:33:28 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.bookmore.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetAllBookingQueueForUser.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Globalization Imports ServiceStack.Data Imports System.Net Imports System.Net.Http.Headers Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class BookingUserQueueItemResponse Public Overridable Property BookingUserQueueId As Integer Public Overridable Property CompanyId As Guid Public Overridable Property CustomerId As Guid Public Overridable Property ServiceId As Integer Public Overridable Property From As Date Public Overridable Property [To] As Date Public Overridable Property StatusCode As Integer Public Overridable Property StatusName As String Public Overridable Property SendConfirmationTime As Date? Public Overridable Property Quantities As List(Of BookingUserQueuePriceResponse) Public Overridable Property Service As ServiceInfoResponse Public Overridable Property Company As CompanyInfoResponse End Class Public Partial Class GetAllBookingQueueForUser Implements IReturn(Of GetAllBookingQueueForUserResponse) ''' '''The user id for your profile. If not set it will set it automatically from your session ''' Public Overridable Property UserId As Guid? Public Overridable Property DateStart As Date? Public Overridable Property DateEnd As Date? ''' '''If you want to include the service information for the booking ''' Public Overridable Property IncludeServiceInformation As Boolean ''' '''If you want to include the company information for the booking ''' Public Overridable Property IncludeCompanyInformation As Boolean End Class Public Partial Class GetAllBookingQueueForUserResponse Public Overridable Property BookingUserQueueResponseList As List(Of BookingUserQueueItemResponse) Public Overridable Property ResponseStatus As ResponseStatus End Class End Namespace End Namespace