/* Options: Date: 2026-01-30 03:25:49 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: SimpleRegisterUser.* //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/simpleregister", Verbs="POST") // @Route(Path="/auth/v1/simpleregister", Verbs="POST") public static class SimpleRegisterUser implements IReturn { public String email = null; public String language = null; public Boolean newsLetter = null; public String sid = null; public Boolean paidSubscription = null; public String getEmail() { return email; } public SimpleRegisterUser setEmail(String value) { this.email = value; return this; } public String getLanguage() { return language; } public SimpleRegisterUser setLanguage(String value) { this.language = value; return this; } public Boolean isNewsLetter() { return newsLetter; } public SimpleRegisterUser setNewsLetter(Boolean value) { this.newsLetter = value; return this; } public String getSid() { return sid; } public SimpleRegisterUser setSid(String value) { this.sid = value; return this; } public Boolean isPaidSubscription() { return paidSubscription; } public SimpleRegisterUser setPaidSubscription(Boolean value) { this.paidSubscription = value; return this; } private static Object responseType = SimpleRegisterUserResponse.class; public Object getResponseType() { return responseType; } } public static class SimpleRegisterUserResponse extends BaseResponse { public String redirectUrl = null; public String getRedirectUrl() { return redirectUrl; } public SimpleRegisterUserResponse setRedirectUrl(String value) { this.redirectUrl = value; return this; } } public static class BaseResponse { public ResponseStatus responseStatus = null; public ResponseStatus getResponseStatus() { return responseStatus; } public BaseResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }