/* Options: Date: 2026-05-19 09:51:35 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetStockSlim.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/stock/{brand}/slim", Verbs="GET") public static class GetStockSlim implements IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) public String brand = null; /** * POS Legacy */ @ApiMember(Description="POS Legacy") public ArrayList posCodes = null; /** * Article Codes */ @ApiMember(Description="Article Codes") public ArrayList articleCodes = null; /** * Cluster Id */ @ApiMember(Description="Cluster Id") public ArrayList clusterIds = null; /** * Include Extra Info */ @ApiMember(Description="Include Extra Info") public Boolean includeExtraInfo = null; /** * Include Consignment NotAuthorized POS */ @ApiMember(Description="Include Consignment NotAuthorized POS") public Boolean includeConsignmentNotAuthorizedPOS = null; /** * Item type, 'standard' OR 'consigned'. By default, all are coming */ @ApiMember(Description="Item type, 'standard' OR 'consigned'. By default, all are coming") public String type = null; public String getBrand() { return brand; } public GetStockSlim setBrand(String value) { this.brand = value; return this; } public ArrayList getPosCodes() { return posCodes; } public GetStockSlim setPosCodes(ArrayList value) { this.posCodes = value; return this; } public ArrayList getArticleCodes() { return articleCodes; } public GetStockSlim setArticleCodes(ArrayList value) { this.articleCodes = value; return this; } public ArrayList getClusterIds() { return clusterIds; } public GetStockSlim setClusterIds(ArrayList value) { this.clusterIds = value; return this; } public Boolean isIncludeExtraInfo() { return includeExtraInfo; } public GetStockSlim setIncludeExtraInfo(Boolean value) { this.includeExtraInfo = value; return this; } public Boolean isIncludeConsignmentNotAuthorizedPOS() { return includeConsignmentNotAuthorizedPOS; } public GetStockSlim setIncludeConsignmentNotAuthorizedPOS(Boolean value) { this.includeConsignmentNotAuthorizedPOS = value; return this; } public String getType() { return type; } public GetStockSlim setType(String value) { this.type = value; return this; } private static Object responseType = GetStockSlimResponse.class; public Object getResponseType() { return responseType; } } public static class GetStockSlimResponse { /** * Total Product Count */ @ApiMember(Description="Total Product Count", IsRequired=true) public Integer totalProductCount = null; /** * Total Consignment Count */ @ApiMember(Description="Total Consignment Count", IsRequired=true) public Integer totalConsignmentCount = null; /** * Articles */ @ApiMember(Description="Articles", IsRequired=true) public ArrayList elements = null; public Integer getTotalProductCount() { return totalProductCount; } public GetStockSlimResponse setTotalProductCount(Integer value) { this.totalProductCount = value; return this; } public Integer getTotalConsignmentCount() { return totalConsignmentCount; } public GetStockSlimResponse setTotalConsignmentCount(Integer value) { this.totalConsignmentCount = value; return this; } public ArrayList getElements() { return elements; } public GetStockSlimResponse setElements(ArrayList value) { this.elements = value; return this; } } }