/* Options: Date: 2026-05-19 09:51:53 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: GetPurchasablePos.* //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.Common.ServiceModel; using Richemont.Booster2.PublicApi.Purchase.ServiceModel; using Richemont.Booster2.PublicApi.Stock.ServiceModel; namespace Richemont.Booster2.PublicApi.Common.ServiceModel { public partial interface IPagedRequest { int page { get; set; } int items { get; set; } bool noCount { get; set; } string sortBy { get; set; } } } namespace Richemont.Booster2.PublicApi.Purchase.ServiceModel { [Route("/purchase/pos", "GET")] public partial class GetPurchasablePos : IReturn, IPagedRequest { /// ///Index of the result set returned /// [ApiMember(Description="Index of the result set returned", IsRequired=true)] public virtual int page { get; set; } /// ///Size of the result set returned /// [ApiMember(Description="Size of the result set returned", IsRequired=true)] public virtual int items { get; set; } /// ///Omit precise record count - save on performance /// [ApiMember(Description="Omit precise record count - save on performance")] public virtual bool noCount { get; set; } /// ///Sorting expression /// [ApiMember(Description="Sorting expression")] public virtual string sortBy { get; set; } /// ///Brand Trigram /// [ApiMember(Description="Brand Trigram", IsRequired=true)] public virtual string brand { get; set; } /// ///Brand Context ID /// [ApiMember(Description="Brand Context ID")] public virtual string boosterContextId { get; set; } } public partial class GetPurchasablePosResponse { /// ///Index of the result set returnedr /// [ApiMember(Description="Index of the result set returnedr", IsRequired=true)] public virtual int page { get; set; } /// ///Size of the result set returned /// [ApiMember(Description="Size of the result set returned", IsRequired=true)] public virtual int items { get; set; } /// ///Total amount of pages / result sets /// [ApiMember(Description="Total amount of pages / result sets", IsRequired=true)] public virtual int totalPages { get; set; } /// ///Total amount of results /// [ApiMember(Description="Total amount of results", IsRequired=true)] public virtual int totalResults { get; set; } /// ///List of Pos /// [ApiMember(Description="List of Pos", IsRequired=true)] public virtual IEnumerable elements { get; set; } } 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 { 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; } } }