(* Options: Date: 2026-05-19 09:51:17 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetCountries.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Richemont.Booster2.PublicApi.CRM.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type Country() = /// ///Country id /// [] member val countryId:String = null with get,set /// ///Country description /// [] member val countryDs:String = null with get,set /// ///Trasnlation of country description based on user language settings /// [] member val translation:String = null with get,set /// ///Telephone prefix /// [] member val telephonePrefix:String = null with get,set [] type GetCountriesResponse() = inherit ResizeArray() [] [] type GetCountries() = interface IReturn