/* Options: Date: 2026-06-14 21:18:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qp-microservices-booster.richemont.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UserRequest.* //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="/warranty/v1/user/{username*}", Verbs="GET") public static class UserRequest implements IReturn { public String username = null; public String getUsername() { return username; } public UserRequest setUsername(String value) { this.username = value; return this; } private static Object responseType = UserResponse.class; public Object getResponseType() { return responseType; } } public static class UserResponse { public String iss = null; public ArrayList aud = null; public String sub = null; public String email = null; public String azp = null; public ArrayList locale = null; public String exp = null; public String iat = null; public String time = null; public String getIss() { return iss; } public UserResponse setIss(String value) { this.iss = value; return this; } public ArrayList getAud() { return aud; } public UserResponse setAud(ArrayList value) { this.aud = value; return this; } public String getSub() { return sub; } public UserResponse setSub(String value) { this.sub = value; return this; } public String getEmail() { return email; } public UserResponse setEmail(String value) { this.email = value; return this; } public String getAzp() { return azp; } public UserResponse setAzp(String value) { this.azp = value; return this; } public ArrayList getLocale() { return locale; } public UserResponse setLocale(ArrayList value) { this.locale = value; return this; } public String getExp() { return exp; } public UserResponse setExp(String value) { this.exp = value; return this; } public String getIat() { return iat; } public UserResponse setIat(String value) { this.iat = value; return this; } public String getTime() { return time; } public UserResponse setTime(String value) { this.time = value; return this; } } }