/* Options: Date: 2026-05-19 09:48:58 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: GetPosGroup.* //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="/posGroups", Verbs="GET") public static class GetPosGroup implements IReturn { /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) public String brand = null; /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) public String buCode = null; public String getBrand() { return brand; } public GetPosGroup setBrand(String value) { this.brand = value; return this; } public String getBuCode() { return buCode; } public GetPosGroup setBuCode(String value) { this.buCode = value; return this; } private static Object responseType = GetPosGroupResponse.class; public Object getResponseType() { return responseType; } } public static class GetPosGroupResponse extends ArrayList { } public static class Scope { /** * Scope Code - combination of BU / Brand */ @ApiMember(Description="Scope Code - combination of BU / Brand", IsRequired=true) public String scopeCode = null; /** * Business Unit Code */ @ApiMember(Description="Business Unit Code", IsRequired=true) public String buCode = null; /** * Brand Trigram */ @ApiMember(Description="Brand Trigram", IsRequired=true) public String brand = null; /** * Description of the combination */ @ApiMember(Description="Description of the combination", IsRequired=true) public String description = null; public String getScopeCode() { return scopeCode; } public Scope setScopeCode(String value) { this.scopeCode = value; return this; } public String getBuCode() { return buCode; } public Scope setBuCode(String value) { this.buCode = value; return this; } public String getBrand() { return brand; } public Scope setBrand(String value) { this.brand = value; return this; } public String getDescription() { return description; } public Scope setDescription(String value) { this.description = value; return this; } } public static class PosGroup extends Scope { /** * Pos Group code */ @ApiMember(Description="Pos Group code", IsRequired=true) public Integer posGroupCode = null; /** * Pos Group Description */ @ApiMember(Description="Pos Group Description", IsRequired=true) public String posGroupDs = null; /** * Define if user is authorized to this pos group */ @ApiMember(Description="Define if user is authorized to this pos group", IsRequired=true) public Boolean isAuthorized = null; public Integer getPosGroupCode() { return posGroupCode; } public PosGroup setPosGroupCode(Integer value) { this.posGroupCode = value; return this; } public String getPosGroupDs() { return posGroupDs; } public PosGroup setPosGroupDs(String value) { this.posGroupDs = value; return this; } public Boolean getIsAuthorized() { return isAuthorized; } public PosGroup setIsAuthorized(Boolean value) { this.isAuthorized = value; return this; } } }