/* Options: Date: 2026-05-19 09:49:02 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: GetPosChainTransferAvailable.* //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="/posChain/{brand}/{posCode}/availableForTransfer", Verbs="GET") public static class GetPosChainTransferAvailable implements IReturn { /** * Brand */ @ApiMember(Description="Brand", IsRequired=true) public String brand = null; /** * POS Legacy Code */ @ApiMember(Description="POS Legacy Code", IsRequired=true) public String posCode = null; public String getBrand() { return brand; } public GetPosChainTransferAvailable setBrand(String value) { this.brand = value; return this; } public String getPosCode() { return posCode; } public GetPosChainTransferAvailable setPosCode(String value) { this.posCode = value; return this; } private static Object responseType = GetPosChainTransferAvailableResponse.class; public Object getResponseType() { return responseType; } } public static class GetPosChainTransferAvailableResponse extends ArrayList { } public static class Pos { /** * POS Code */ @ApiMember(Description="POS Code", IsRequired=true) public String posCode = null; /** * Name of the POS */ @ApiMember(Description="Name of the POS", IsRequired=true) public String name = null; /** * City of the POS */ @ApiMember(Description="City of the POS", IsRequired=true) public String city = null; /** * Address of the POS */ @ApiMember(Description="Address of the POS", IsRequired=true) public String address = null; /** * Country of the POS */ @ApiMember(Description="Country of the POS", IsRequired=true) public String country = null; /** * Brand of the POS */ @ApiMember(Description="Brand of the POS", IsRequired=true) public String brand = null; public String getPosCode() { return posCode; } public Pos setPosCode(String value) { this.posCode = value; return this; } public String getName() { return name; } public Pos setName(String value) { this.name = value; return this; } public String getCity() { return city; } public Pos setCity(String value) { this.city = value; return this; } public String getAddress() { return address; } public Pos setAddress(String value) { this.address = value; return this; } public String getCountry() { return country; } public Pos setCountry(String value) { this.country = value; return this; } public String getBrand() { return brand; } public Pos setBrand(String value) { this.brand = value; return this; } } public static class Pos { /** * Name of the POS */ @ApiMember(Description="Name of the POS", IsRequired=true) public String name = null; /** * POS Code */ @ApiMember(Description="POS Code", IsRequired=true) public String posCode = null; /** * Pos Code To Be Displayed */ @ApiMember(Description="Pos Code To Be Displayed", IsRequired=true) public String posCodeToBeDisplayed = null; /** * Country of the POS */ @ApiMember(Description="Country of the POS", IsRequired=true) public String country = null; /** * City of the POS */ @ApiMember(Description="City of the POS", IsRequired=true) public String city = null; /** * Postal Code */ @ApiMember(Description="Postal Code", IsRequired=true) public String postalCode = null; /** * State */ @ApiMember(Description="State", IsRequired=true) public String state = null; /** * Street */ @ApiMember(Description="Street", IsRequired=true) public String street = null; public String getName() { return name; } public Pos setName(String value) { this.name = value; return this; } public String getPosCode() { return posCode; } public Pos setPosCode(String value) { this.posCode = value; return this; } public String getPosCodeToBeDisplayed() { return posCodeToBeDisplayed; } public Pos setPosCodeToBeDisplayed(String value) { this.posCodeToBeDisplayed = value; return this; } public String getCountry() { return country; } public Pos setCountry(String value) { this.country = value; return this; } public String getCity() { return city; } public Pos setCity(String value) { this.city = value; return this; } public String getPostalCode() { return postalCode; } public Pos setPostalCode(String value) { this.postalCode = value; return this; } public String getState() { return state; } public Pos setState(String value) { this.state = value; return this; } public String getStreet() { return street; } public Pos setStreet(String value) { this.street = value; return this; } } }