' Options: 'Date: 2025-09-14 02:43:45 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.bokamera.se ' '''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: UpdateQuantity.* '''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.Interfaces Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class BookedQuantity ''' '''The quantity Id ''' Public Overridable Property Id As Integer ''' '''The quantity for booked on this price category ''' Public Overridable Property Quantity As Integer ''' '''The price ''' Public Overridable Property Price As Double? ''' '''The price bofore rebate codes ''' Public Overridable Property PriceBeforeRebate As Double? ''' '''The price currency ''' Public Overridable Property CurrencyId As String ''' '''The price sign ''' Public Overridable Property PriceSign As String ''' '''The price category ''' Public Overridable Property Category As String ''' '''The price VAT in percent ''' Public Overridable Property VAT As Decimal? ''' '''The price text to display ''' Public Overridable Property PriceText As String ''' '''If the quantity you add should occupy a spot. Default is true. If no it will only be a row that includes price information. ''' Public Overridable Property OccupiesSpot As Boolean End Class Public Partial Class UpdateQuantity Implements IReturn(Of BookedQuantity) Implements ICompany ''' '''The company id, if empty will use the company id for the user you are logged in with. ''' Public Overridable Property CompanyId As Guid? Implements ICompany.CompanyId ''' '''Id of the booking ''' Public Overridable Property BookingId As Integer? ''' '''Id of the quantity ''' Public Overridable Property Id As Integer? ''' '''If the quantity you add should occupy a spot. Default is true. If no it will only be a row that includes price information. ''' Public Overridable Property OccupiesSpot As Boolean? ''' '''The quantity for booked on this price category ''' Public Overridable Property Quantity As Integer ''' '''The price ''' Public Overridable Property Price As Double? ''' '''The price currency ''' Public Overridable Property CurrencyId As String ''' '''The price category ''' Public Overridable Property Category As String ''' '''The price VAT in percent ''' Public Overridable Property VAT As Decimal? ''' '''Any comments to be stored in the event log. ''' Public Overridable Property Comments As String ''' '''If you want the amount to be refunded automatically if amount is lower than paid ''' Public Overridable Property Refund As Boolean End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Guid? End Interface End Namespace End Namespace