/* Options: Date: 2026-05-19 09:51:58 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: GetCrmFormConfigurations.* //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 { [Route("/crmFormConfigurations/{brand}/{posCode}", "GET")] public partial class GetCrmFormConfigurations : IReturn { /// ///Brand Triagram, e.g. CAR, IWC, VAC /// [ApiMember(Description="Brand Triagram, e.g. CAR, IWC, VAC", IsRequired=true)] public virtual string brand { get; set; } /// ///Point of Sale Code, e.g. ES100:102048 /// [ApiMember(Description="Point of Sale Code, e.g. ES100:102048", IsRequired=true)] public virtual string posCode { get; set; } /// ///ISO Alpha-2 Country Code, e.g. it, ch /// [ApiMember(Description="ISO Alpha-2 Country Code, e.g. it, ch", IsRequired=true)] public virtual string crmCountryId { get; set; } } public partial class GetCrmFormConfigurationsResponse { /// ///Privacy policy agreement in Time Vallée POS group, e.g. M, V, N /// [ApiMember(Description="Privacy policy agreement in Time Vallée POS group, e.g. M, V, N", IsRequired=true)] public virtual string timeValeePrivacyPolicy { get; set; } /// ///Store data abroad agreement in Time Vallée POS group, e.g. M, V, N /// [ApiMember(Description="Store data abroad agreement in Time Vallée POS group, e.g. M, V, N", IsRequired=true)] public virtual string timeValeeAllowStoreDataAbroad { get; set; } /// ///Data sharing consent, e.g. M, V, N /// [ApiMember(Description="Data sharing consent, e.g. M, V, N", IsRequired=true)] public virtual string dataSharingConsent { get; set; } /// ///Requirement for email field, e.g. M, V, N /// [ApiMember(Description="Requirement for email field, e.g. M, V, N", IsRequired=true)] public virtual string email { get; set; } /// ///Requirement for phone field, e.g. M, V, N /// [ApiMember(Description="Requirement for phone field, e.g. M, V, N", IsRequired=true)] public virtual string phone { get; set; } /// ///Requirement for middle name field, e.g. M, V, N /// [ApiMember(Description="Requirement for middle name field, e.g. M, V, N", IsRequired=true)] public virtual string middleName { get; set; } /// ///Privacy policy agreement in Maison, e.g. M, V, N /// [ApiMember(Description="Privacy policy agreement in Maison, e.g. M, V, N", IsRequired=true)] public virtual string privacyPolicy { get; set; } /// ///Store data abroad agreement in Maison, e.g. M, V, N /// [ApiMember(Description="Store data abroad agreement in Maison, e.g. M, V, N", IsRequired=true)] public virtual string allowStoreDateAbroad { get; set; } /// ///Requirement for sales representative field, e.g. M, V, N /// [ApiMember(Description="Requirement for sales representative field, e.g. M, V, N", IsRequired=true)] public virtual string salesRep { get; set; } /// ///Show or hide Transliteration fields /// [ApiMember(Description="Show or hide Transliteration fields", IsRequired=true)] public virtual bool showNotLatinFields { get; set; } /// ///Transliteration language /// [ApiMember(Description="Transliteration language", IsRequired=true)] public virtual string transliterationLanguage { get; set; } /// ///City /// [ApiMember(Description="City", IsRequired=true)] public virtual string city { get; set; } } }