/* Options: Date: 2026-05-19 09:51:14 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: GetCountries.* //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 Country { /// ///Country id /// [ApiMember(Description="Country id", IsRequired=true)] public virtual string countryId { get; set; } /// ///Country description /// [ApiMember(Description="Country description", IsRequired=true)] public virtual string countryDs { get; set; } /// ///Trasnlation of country description based on user language settings /// [ApiMember(Description="Trasnlation of country description based on user language settings")] public virtual string translation { get; set; } /// ///Telephone prefix /// [ApiMember(Description="Telephone prefix", IsRequired=true)] public virtual string telephonePrefix { get; set; } } [Route("/countries", "GET")] public partial class GetCountries : IReturn { } public partial class GetCountriesResponse : List { } }