/* Options: Date: 2026-05-19 09:52:02 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: UpdateConsents.* //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("/customer/{boosterCustomerId}/updateConsents", "PATCH")] public partial class UpdateConsents { /// ///Booster customer Id /// [ApiMember(Description="Booster customer Id")] public virtual int boosterCustomerId { get; set; } /// ///Provide 'true' if you want to be contacted by email. Leave empty or 'false' if you do not. /// [ApiMember(Description="Provide 'true' if you want to be contacted by email. Leave empty or 'false' if you do not.")] public virtual bool contactByEmailFlag { get; set; } /// ///Provide 'true' if you want to be contacted by mail. Leave empty or 'false' if you do not. /// [ApiMember(Description="Provide 'true' if you want to be contacted by mail. Leave empty or 'false' if you do not.")] public virtual bool contactByMailFlag { get; set; } /// ///Provide 'true' if you want to be contacted by phone. Leave empty or 'false' if you do not. /// [ApiMember(Description="Provide 'true' if you want to be contacted by phone. Leave empty or 'false' if you do not.")] public virtual bool contactByPhoneFlag { get; set; } /// ///Provide 'true' if you want to be contacted by SMS. Leave empty or 'false' if you do not. /// [ApiMember(Description="Provide 'true' if you want to be contacted by SMS. Leave empty or 'false' if you do not.")] public virtual bool contactBySMSFlag { get; set; } /// ///Provide 'true' if you want to be contacted by social media. Leave empty or 'false' if you do not. /// [ApiMember(Description="Provide 'true' if you want to be contacted by social media. Leave empty or 'false' if you do not.")] public virtual bool contactBySocialMediaFlag { get; set; } /// ///Provide 'true' if you want to be contacted at all. Leave empty or 'false' if you do not - if chosen false, all contactBy* will be set to false also /// [ApiMember(Description="Provide 'true' if you want to be contacted at all. Leave empty or 'false' if you do not - if chosen false, all contactBy* will be set to false also")] public virtual bool privacyAcceptance { get; set; } /// ///Provide 'true' if you allow your data to be stored abroad. Leave empty or 'false' if you do not. /// [ApiMember(Description="Provide 'true' if you allow your data to be stored abroad. Leave empty or 'false' if you do not.")] public virtual bool? allowStoreDataAbroad { get; set; } } }