/* Options: Date: 2026-01-30 03:25:46 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://auth-sandbox.migrantleap.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RegisterUser.* //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="/api/v1/register", Verbs="POST") // @Route(Path="/auth/v1/register", Verbs="POST") public static class RegisterUser implements IReturn { public String email = null; public String country = null; public String language = null; public String password = null; public Boolean newsLetter = null; public String getEmail() { return email; } public RegisterUser setEmail(String value) { this.email = value; return this; } public String getCountry() { return country; } public RegisterUser setCountry(String value) { this.country = value; return this; } public String getLanguage() { return language; } public RegisterUser setLanguage(String value) { this.language = value; return this; } public String getPassword() { return password; } public RegisterUser setPassword(String value) { this.password = value; return this; } public Boolean isNewsLetter() { return newsLetter; } public RegisterUser setNewsLetter(Boolean value) { this.newsLetter = value; return this; } private static Object responseType = RegisterUserResponse.class; public Object getResponseType() { return responseType; } } public static class RegisterUserResponse extends BaseResponse { } public static class BaseResponse { public ResponseStatus responseStatus = null; public ResponseStatus getResponseStatus() { return responseStatus; } public BaseResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }