/* Options: Date: 2024-07-03 12:56:18 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: CalculateTotalPriceOnService.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/services/{Id}/calculateprice", "PUT") public class CalculateTotalPriceOnService : IReturn, ICompany, Codable { public typealias Return = TotalPriceInformationResponse /** * The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public var companyId:String? /** * Id of the service */ // @ApiMember(Description="Id of the service", IsRequired=true, ParameterType="path") public var id:Int /** * The price interval to be used for calculations */ // @ApiMember(Description="The price interval to be used for calculations", IsRequired=true) public var interval:PriceInterval /** * If you have selected to include the prices, here you can include the rebate codes */ // @ApiMember(Description="If you have selected to include the prices, here you can include the rebate codes") public var rebateCodeIds:[Int] = [] /** * If you have selected to include the prices, here you can include the quantities to book to get the correct total price. */ // @ApiMember(Description="If you have selected to include the prices, here you can include the quantities to book to get the correct total price.") public var quantities:[QuantityToBook] = [] required public init(){} } public class TotalPriceInformationResponse : Codable { public var priceSign:String public var currencyId:String public var totalPrice:Double public var totalVatAmount:Double public var totalPriceBeforeRebate:Double public var appliedCodes:[AppliedRebateCodesResponse] = [] public var priceDetails:[TotalPricePriceDetail] = [] required public init(){} } public protocol ICompany { var companyId:String? { get set } } public class PriceInterval : Codable { /** * The start date and time for the price to be calculated. Normally the booking start datetime. */ // @ApiMember(Description="The start date and time for the price to be calculated. Normally the booking start datetime.", IsRequired=true) public var from:Date /** * The end date and time for the price to be calculated.Normally the booking end datetime. If nothing entered it will use the service length. */ // @ApiMember(Description="The end date and time for the price to be calculated.Normally the booking end datetime. If nothing entered it will use the service length.") public var to:Date? required public init(){} } public class RebateCodeTypeItem : Codable { public var id:Int public var name:String public var Description:String required public init(){} } public class AppliedRebateCodesResponse : Codable { public var rebateCodeSign:String public var rebateCodeValue:Int public var rebateCodeType:RebateCodeTypeItem public var rebateCodeId:Int public var rebateAmount:Double required public init(){} } public class TotalPricePriceDetail : Codable { public var quantity:Int public var price:Double public var vatAmount:Double public var Description:String required public init(){} }