(* Options: Date: 2024-06-26 10:53:48 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateAllQuantities.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type ICompany = abstract CompanyId:Nullable with get,set [] type BookedQuantity() = /// ///The quantity Id /// [] member val Id:Int32 = new Int32() with get,set /// ///The quantity for booked on this price category /// [] member val Quantity:Int32 = new Int32() with get,set /// ///The price /// [] member val Price:Nullable = new Nullable() with get,set /// ///The price bofore rebate codes /// [] member val PriceBeforeRebate:Nullable = new Nullable() with get,set /// ///The price currency /// [] member val CurrencyId:String = null with get,set /// ///The price sign /// [] member val PriceSign:String = null with get,set /// ///The price category /// [] member val Category:String = null with get,set /// ///The price VAT in percent /// [] member val VAT:Nullable = new Nullable() with get,set /// ///The price text to display /// [] member val PriceText:String = null with get,set /// ///If the quantity you add should occupy a spot. Default is true. If no it will only be a row that includes price information. /// [] member val OccupiesSpot:Boolean = new Boolean() with get,set [] [] [] [] [] type UpdateAllQuantities() = interface IReturn /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Id of the booking /// [] member val BookingId:Int32 = new Int32() with get,set /// ///Set the number of spots you want to book. You add number of spots per price category. Multiple spots require that the service has GroupBooking enabled. Default is one spot. /// [] member val Quantities:QuantityToUpdate[] = [||] with get,set /// ///Any comments to be stored in the event log. /// [] member val Comments:String = null with get,set