/* Options: Date: 2026-05-19 10:58:27 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: GetWarehouseStock.* //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.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.Stock.ServiceModel { [Route("/warehouseItems/{brand}/{posCode}", "GET")] public partial class GetWarehouseStock : IReturn, IPagedRequest { public GetWarehouseStock() { articleCodes = new List{}; } /// ///Brand /// [ApiMember(Description="Brand", IsRequired=true)] public virtual string brand { get; set; } /// ///POS Legacy /// [ApiMember(Description="POS Legacy", IsRequired=true)] public virtual string posCode { get; set; } /// ///List of Article Codes /// [ApiMember(Description="List of Article Codes")] public virtual List articleCodes { get; set; } /// ///Index of the result set returned /// [ApiMember(Description="Index of the result set returned")] public virtual int page { get; set; } /// ///Size of the result set returned /// [ApiMember(Description="Size of the result set returned")] 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; } } public partial class GetWarehouseStockResponse { /// ///Total Pages /// [ApiMember(Description="Total Pages", IsRequired=true)] public virtual int totalPages { get; set; } /// ///Total Results /// [ApiMember(Description="Total Results", IsRequired=true)] public virtual int totalResults { get; set; } /// ///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; } /// ///List of movements /// [ApiMember(Description="List of movements", IsRequired=true)] public virtual IEnumerable elements { get; set; } } public partial class WarehouseStockElement { /// ///Article Code /// [ApiMember(Description="Article Code", IsRequired=true)] public virtual string articleCode { get; set; } /// ///Current Stock Quantity /// [ApiMember(Description="Current Stock Quantity", IsRequired=true)] public virtual int atpQuantity { get; set; } } }