/* Options: Date: 2026-04-03 13:59:47 SwiftVersion: 6.0 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: UpdateVossTenantConfigurations.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/voss/tenantConfigurations", "PUT") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public class UpdateVossTenantConfigurations : Codable { public var allowCountryCodeAndCountryRuleSetMismatch:Bool? public var countryRuleSet:CountryRuleSetEnum? required public init(){} } public enum CountryRuleSetEnum : String, Codable { case Default case NO case SE case DK case NL case FI }