/* Options: Date: 2026-05-19 09:49:01 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: UpdatePOSIdentity.* //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="/posIdentity", Verbs="PUT") public static class UpdatePOSIdentity implements IReturn { /** * Point of Sale Code */ @ApiMember(Description="Point of Sale Code", IsRequired=true) public String posCode = null; /** * Friendly name of the POS, max length 160 characters */ @ApiMember(Description="Friendly name of the POS, max length 160 characters") public String friendlyName = null; public String getPosCode() { return posCode; } public UpdatePOSIdentity setPosCode(String value) { this.posCode = value; return this; } public String getFriendlyName() { return friendlyName; } public UpdatePOSIdentity setFriendlyName(String value) { this.friendlyName = value; return this; } private static Object responseType = UpdatePOSIdentityResponse.class; public Object getResponseType() { return responseType; } } public static class UpdatePOSIdentityResponse { } }