/* Options: Date: 2025-12-09 03:52:21 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: CancelLicense.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/licenses/company/{Id}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") public class CancelLicense : IReturn, ICompany, Codable { public typealias Return = CompanyLicenseQueryResponse /** * 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 license */ // @ApiMember(Description="Id of the license", IsRequired=true, ParameterType="path") public var id:Int? required public init(){} } public class CompanyLicenseQueryResponse : Codable { public var id:Int? public var typeId:Int? public var type:LicenseTypeQueryResponse? public var validFrom:Date? public var validTo:Date? public var vossSubscriptionId:String? public var vossSubscription:VossSubscriptionResponse? public var metaData:String? public var active:Bool? public var canceled:Bool? public var updated:Date? public var created:Date? required public init(){} } public protocol ICompany { var companyId:String? { get set } } public class Country : BaseModel { // @References(typeof(Currency)) public var currencyId:String? public var currencyInfo:Currency? // @Required() public var name:String? public var culture:String? public var timeZone:String? public var modifiedDate:Date? // @Required() public var id:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case currencyId case currencyInfo case name case culture case timeZone case modifiedDate case id } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) currencyId = try container.decodeIfPresent(String.self, forKey: .currencyId) currencyInfo = try container.decodeIfPresent(Currency.self, forKey: .currencyInfo) name = try container.decodeIfPresent(String.self, forKey: .name) culture = try container.decodeIfPresent(String.self, forKey: .culture) timeZone = try container.decodeIfPresent(String.self, forKey: .timeZone) modifiedDate = try container.decodeIfPresent(Date.self, forKey: .modifiedDate) id = try container.decodeIfPresent(String.self, forKey: .id) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if currencyId != nil { try container.encode(currencyId, forKey: .currencyId) } if currencyInfo != nil { try container.encode(currencyInfo, forKey: .currencyInfo) } if name != nil { try container.encode(name, forKey: .name) } if culture != nil { try container.encode(culture, forKey: .culture) } if timeZone != nil { try container.encode(timeZone, forKey: .timeZone) } if modifiedDate != nil { try container.encode(modifiedDate, forKey: .modifiedDate) } if id != nil { try container.encode(id, forKey: .id) } } } public class Currency : BaseModel { // @Required() public var name:String? // @Required() public var currencySign:String? // @Required() public var active:Bool? public var modifiedDate:Date? // @Required() public var id:String? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case name case currencySign case active case modifiedDate case id } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) name = try container.decodeIfPresent(String.self, forKey: .name) currencySign = try container.decodeIfPresent(String.self, forKey: .currencySign) active = try container.decodeIfPresent(Bool.self, forKey: .active) modifiedDate = try container.decodeIfPresent(Date.self, forKey: .modifiedDate) id = try container.decodeIfPresent(String.self, forKey: .id) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if name != nil { try container.encode(name, forKey: .name) } if currencySign != nil { try container.encode(currencySign, forKey: .currencySign) } if active != nil { try container.encode(active, forKey: .active) } if modifiedDate != nil { try container.encode(modifiedDate, forKey: .modifiedDate) } if id != nil { try container.encode(id, forKey: .id) } } } public class LicenseTypeQueryResponse : Codable { /** * The license type id */ // @ApiMember(Description="The license type id") public var id:Int? /** * The license type name */ // @ApiMember(Description="The license type name") public var name:String? /** * The license type description */ // @ApiMember(Description="The license type description") public var Description:String? /** * If the license type is not a standard license but instead an extra license option. An example would be sending newsletter license. */ // @ApiMember(Description="If the license type is not a standard license but instead an extra license option. An example would be sending newsletter license.") public var isExtraLicenseOption:Bool? /** * The period of notice for the license in days. */ // @ApiMember(Description="The period of notice for the license in days.") public var periodOfNoticeDays:Int? /** * The license items for the license type */ // @ApiMember(Description="The license items for the license type") public var items:[LicenseItemsResponse] = [] /** * The license prices in each country for the license type */ // @ApiMember(Description="The license prices in each country for the license type") public var prices:[LicensePriceResponse] = [] required public init(){} } public class VossSubscriptionResponse : Codable { public var subscriptionBillingPeriodStartDate:Date? public var subscriptionBillingPeriodEndDate:Date? public var tier:TierResponse? required public init(){} } public class BaseModel : Codable { required public init(){} } public class LicenseItemsResponse : Codable { public var id:Int? public var name:String? public var allowedItems:Int? required public init(){} } public class LicensePriceResponse : Codable { public var licenseTypeId:Int? public var countryId:String? public var price:Int? public var country:Country? public var licensePlanId:Int? required public init(){} } public class TierResponse : Codable { public var id:String? public var name:String? public var productGroups:[ProductGroupResponse] = [] required public init(){} } public class ProductGroupResponse : Codable { public var id:String? public var name:String? public var tierId:String? required public init(){} }