/* Options: Date: 2026-05-19 10:57:51 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: GetSelloutFormConfigurations.* //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.Sellout.ServiceModel; namespace Richemont.Booster2.PublicApi.Sellout.ServiceModel { [Route("/selloutFormConfigurations/{brand}/{posCode}", "GET")] public partial class GetSelloutFormConfigurations : 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; } } public partial class GetSelloutFormConfigurationsResponse { /// ///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; } /// ///Allow consignment transfer during sellout, e.g. M, V, N /// [ApiMember(Description="Allow consignment transfer during sellout, e.g. M, V, N", IsRequired=true)] public virtual string allowConsignmentTransfer { get; set; } /// ///Invoice Number will be generated automatically during sellout, e.g. M, V, N /// [ApiMember(Description="Invoice Number will be generated automatically during sellout, e.g. M, V, N", IsRequired=true)] public virtual string automaticInvoiceNumber { get; set; } /// ///Allow consignment sellout return is stock, e.g. V, N /// [ApiMember(Description="Allow consignment sellout return is stock, e.g. V, N", IsRequired=true)] public virtual string allowConsignmentReturnInStock { get; set; } /// ///Allow declare sellout and extend the warranty of certified pre-owned items, e.g. V, N /// [ApiMember(Description="Allow declare sellout and extend the warranty of certified pre-owned items, e.g. V, N", IsRequired=true)] public virtual string cpoSaleDeclaration { get; set; } } }