/* Options: Date: 2026-04-18 14:22:19 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-staging.bookmore.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateVossTenantConfigurations.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/voss/tenantConfigurations", Verbs="PUT") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class UpdateVossTenantConfigurations { public Boolean AllowCountryCodeAndCountryRuleSetMismatch = null; public CountryRuleSetEnum CountryRuleSet = null; public Boolean isAllowCountryCodeAndCountryRuleSetMismatch() { return AllowCountryCodeAndCountryRuleSetMismatch; } public UpdateVossTenantConfigurations setAllowCountryCodeAndCountryRuleSetMismatch(Boolean value) { this.AllowCountryCodeAndCountryRuleSetMismatch = value; return this; } public CountryRuleSetEnum getCountryRuleSet() { return CountryRuleSet; } public UpdateVossTenantConfigurations setCountryRuleSet(CountryRuleSetEnum value) { this.CountryRuleSet = value; return this; } } public static enum CountryRuleSetEnum { Default, No, Se, Dk, Nl, Fi; } }