/* Options: Date: 2026-05-19 10:57:52 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: GetStockSlim.* //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.Stock.ServiceModel; namespace Richemont.Booster2.PublicApi.Stock.ServiceModel { [Route("/stock/{brand}/slim", "GET")] public partial class GetStockSlim : IReturn { public GetStockSlim() { posCodes = new List{}; articleCodes = new List{}; clusterIds = new List{}; } /// ///Brand /// [ApiMember(Description="Brand", IsRequired=true)] public virtual string brand { get; set; } /// ///POS Legacy /// [ApiMember(Description="POS Legacy")] public virtual List posCodes { get; set; } /// ///Article Codes /// [ApiMember(Description="Article Codes")] public virtual List articleCodes { get; set; } /// ///Cluster Id /// [ApiMember(Description="Cluster Id")] public virtual List clusterIds { get; set; } /// ///Include Extra Info /// [ApiMember(Description="Include Extra Info")] public virtual bool includeExtraInfo { get; set; } /// ///Include Consignment NotAuthorized POS /// [ApiMember(Description="Include Consignment NotAuthorized POS")] public virtual bool includeConsignmentNotAuthorizedPOS { get; set; } /// ///Item type, 'standard' OR 'consigned'. By default, all are coming /// [ApiMember(Description="Item type, 'standard' OR 'consigned'. By default, all are coming")] public virtual string type { get; set; } } public partial class GetStockSlimResponse { public GetStockSlimResponse() { elements = new List{}; } /// ///Total Product Count /// [ApiMember(Description="Total Product Count", IsRequired=true)] public virtual int totalProductCount { get; set; } /// ///Total Consignment Count /// [ApiMember(Description="Total Consignment Count", IsRequired=true)] public virtual int totalConsignmentCount { get; set; } /// ///Articles /// [ApiMember(Description="Articles", IsRequired=true)] public virtual List elements { get; set; } } }