/* Options: Date: 2026-05-19 09:51:42 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: GetAddressTypes.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Richemont.Booster2.PublicApi.CRM.ServiceModel; namespace Richemont.Booster2.PublicApi.CRM.ServiceModel { public partial class AddressType { /// ///Booster Address Type /// [ApiMember(Description="Booster Address Type", IsRequired=true)] public virtual string addressType { get; set; } /// ///Address type description translation /// [ApiMember(Description="Address type description translation", IsRequired=true)] public virtual string translation { get; set; } } [Route("/addressTypes", "GET")] public partial class GetAddressTypes : IReturn { } public partial class GetAddressTypesResponse : List { } }