/* Options:
Date: 2026-03-14 11:56:12
Version: 10.05
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://api.bookmore.com
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: True
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: DeleteBookingUserQueue.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using System.Globalization;
using ServiceStack.Data;
using System.Net;
using System.Net.Http.Headers;
using BokaMera.API.ServiceModel.Dtos;
namespace BokaMera.API.ServiceModel.Dtos
{
public partial class BookedCustomer
{
public virtual Guid Id { get; set; }
public virtual string Firstname { get; set; }
public virtual string Lastname { get; set; }
public virtual string Email { get; set; }
public virtual string Phone { get; set; }
public virtual string FacebookUserName { get; set; }
public virtual string ImageUrl { get; set; }
public virtual string PersonalIdentityNumber { get; set; }
public virtual string CorporateIdentityNumber { get; set; }
public virtual string InvoiceAddress1 { get; set; }
public virtual string InvoiceAddress2 { get; set; }
public virtual string InvoiceCity { get; set; }
public virtual string InvoicePostalCode { get; set; }
public virtual string InvoiceCountryCode { get; set; }
///
///Tags attached to this customer.
///
[ApiMember(Description="Tags attached to this customer.")]
public virtual List Tags { get; set; } = [];
}
public partial class BookingUserQueueItemResponse
{
public virtual int BookingUserQueueId { get; set; }
public virtual Guid CompanyId { get; set; }
public virtual Guid CustomerId { get; set; }
public virtual int ServiceId { get; set; }
public virtual DateTime From { get; set; }
public virtual DateTime To { get; set; }
public virtual int StatusCode { get; set; }
public virtual string StatusName { get; set; }
public virtual DateTime? SendConfirmationTime { get; set; }
public virtual List Quantities { get; set; } = [];
public virtual ServiceInfoResponse Service { get; set; }
public virtual CompanyInfoResponse Company { get; set; }
public virtual BookedCustomer Customer { get; set; }
}
public partial class BookingUserQueuePriceResponse
{
public virtual Guid CompanyId { get; set; }
public virtual int Id { get; set; }
public virtual int BookingUserQueueId { get; set; }
public virtual int? ServicePriceId { get; set; }
public virtual int? Quantity { get; set; }
public virtual double? Price { get; set; }
public virtual string PriceText { get; set; }
}
public partial class CompanyInfoResponse
{
public virtual Guid Id { get; set; }
public virtual string Name { get; set; }
public virtual Uri LogoType { get; set; }
public virtual string SitePath { get; set; }
}
[Route("/bookinguserqueue/{Id}", "DELETE")]
[ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)]
[ValidateRequest("IsAuthenticated")]
public partial class DeleteBookingUserQueue
: IReturn
{
///
///Id of the booking user queue
///
[ApiMember(Description="Id of the booking user queue", IsRequired=true, ParameterType="path")]
public virtual int Id { get; set; }
///
///
///
[ApiMember(Description="", IsRequired=true)]
public virtual Guid CompanyId { get; set; }
///
///
///
[ApiMember(Description="", IsRequired=true)]
public virtual Guid CustomerId { get; set; }
}
public partial class GroupBookingSettings
{
public virtual bool Active { get; set; }
public virtual int Min { get; set; }
public virtual int Max { get; set; }
}
public partial class MultipleResourceSettings
{
public virtual bool Active { get; set; }
public virtual int Min { get; set; }
public virtual int Max { get; set; }
}
public partial class ServiceInfoResponse
{
public virtual int Id { get; set; }
public virtual string Name { get; set; }
public virtual string Description { get; set; }
public virtual Uri ImageUrl { get; set; }
public virtual int? LengthInMinutes { get; set; }
public virtual int MaxNumberOfSpotsPerBooking { get; set; }
public virtual int MinNumberOfSpotsPerBooking { get; set; }
public virtual GroupBookingSettings GroupBooking { get; set; }
public virtual MultipleResourceSettings MultipleResource { get; set; }
public virtual bool IsGroupBooking { get; set; }
public virtual bool IsPaymentEnabled { get; set; }
}
public partial class TagResponse
{
public virtual int Id { get; set; }
public virtual Guid CompanyId { get; set; }
public virtual string Name { get; set; }
public virtual int Scope { get; set; }
public virtual string Color { get; set; }
public virtual int SortOrder { get; set; }
public virtual bool Active { get; set; }
public virtual DateTime CreatedDate { get; set; }
public virtual ResponseStatus ResponseStatus { get; set; }
}
}