/* Options: Date: 2026-05-19 09:51:19 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: GetPosChainTransferAvailable.* //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.Purchase.ServiceModel; using Richemont.Booster2.PublicApi.Stock.ServiceModel; namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel { public partial class Pos { /// ///POS Code /// [ApiMember(Description="POS Code", IsRequired=true)] public virtual string posCode { get; set; } /// ///Name of the POS /// [ApiMember(Description="Name of the POS", IsRequired=true)] public virtual string name { get; set; } /// ///City of the POS /// [ApiMember(Description="City of the POS", IsRequired=true)] public virtual string city { get; set; } /// ///Address of the POS /// [ApiMember(Description="Address of the POS", IsRequired=true)] public virtual string address { get; set; } /// ///Country of the POS /// [ApiMember(Description="Country of the POS", IsRequired=true)] public virtual string country { get; set; } /// ///Brand of the POS /// [ApiMember(Description="Brand of the POS", IsRequired=true)] public virtual string brand { get; set; } } } namespace Richemont.Booster2.PublicApi.Stock.ServiceModel { [Route("/posChain/{brand}/{posCode}/availableForTransfer", "GET")] public partial class GetPosChainTransferAvailable : IReturn { /// ///Brand /// [ApiMember(Description="Brand", IsRequired=true)] public virtual string brand { get; set; } /// ///POS Legacy Code /// [ApiMember(Description="POS Legacy Code", IsRequired=true)] public virtual string posCode { get; set; } } public partial class GetPosChainTransferAvailableResponse : List { } public partial class Pos { /// ///Name of the POS /// [ApiMember(Description="Name of the POS", IsRequired=true)] public virtual string name { get; set; } /// ///POS Code /// [ApiMember(Description="POS Code", IsRequired=true)] public virtual string posCode { get; set; } /// ///Pos Code To Be Displayed /// [ApiMember(Description="Pos Code To Be Displayed", IsRequired=true)] public virtual string posCodeToBeDisplayed { get; set; } /// ///Country of the POS /// [ApiMember(Description="Country of the POS", IsRequired=true)] public virtual string country { get; set; } /// ///City of the POS /// [ApiMember(Description="City of the POS", IsRequired=true)] public virtual string city { get; set; } /// ///Postal Code /// [ApiMember(Description="Postal Code", IsRequired=true)] public virtual string postalCode { get; set; } /// ///State /// [ApiMember(Description="State", IsRequired=true)] public virtual string state { get; set; } /// ///Street /// [ApiMember(Description="Street", IsRequired=true)] public virtual string street { get; set; } } }