/* Options: Date: 2026-05-19 09:49:16 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: GetProductCollections.* //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="/product-collection/{brand}/{posCode}", Verbs="GET") public static class GetProductCollections implements IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) public String brand = null; /** * POS Legacy */ @ApiMember(Description="POS Legacy", IsRequired=true) public String posCode = null; public String getBrand() { return brand; } public GetProductCollections setBrand(String value) { this.brand = value; return this; } public String getPosCode() { return posCode; } public GetProductCollections setPosCode(String value) { this.posCode = value; return this; } private static Object responseType = GetProductCollectionsResponse.class; public Object getResponseType() { return responseType; } } public static class GetProductCollectionsResponse extends ArrayList { } public static class ProductCollection { /** * Product Collection description */ @ApiMember(Description="Product Collection description", IsRequired=true) public String productCollection = null; /** * SAP ProductCollection ID, e.g. 'CA-1' */ @ApiMember(Description="SAP ProductCollection ID, e.g. 'CA-1'", IsRequired=true) public String sapProductCollectionId = null; /** * Product Collection description translation */ @ApiMember(Description="Product Collection description translation", IsRequired=true) public String translation = null; public String getProductCollection() { return productCollection; } public ProductCollection setProductCollection(String value) { this.productCollection = value; return this; } public String getSapProductCollectionId() { return sapProductCollectionId; } public ProductCollection setSapProductCollectionId(String value) { this.sapProductCollectionId = value; return this; } public String getTranslation() { return translation; } public ProductCollection setTranslation(String value) { this.translation = value; return this; } } }