/* Options: Date: 2025-09-03 18:52:06 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: EnableTwoFactorAuthenticationRequest.* //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="/users/2fa/enable", Verbs="PUT") public static class EnableTwoFactorAuthenticationRequest extends PutOperationUnTenanted implements IReturn { public String code = null; public String getCode() { return code; } public EnableTwoFactorAuthenticationRequest setCode(String value) { this.code = value; return this; } private static Object responseType = EnableTwoFactorAuthenticationResponse.class; public Object getResponseType() { return responseType; } } public static class EnableTwoFactorAuthenticationResponse { public ResponseStatus responseStatus = null; public String bearerToken = null; public String refreshToken = null; public ResponseStatus getResponseStatus() { return responseStatus; } public EnableTwoFactorAuthenticationResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getBearerToken() { return bearerToken; } public EnableTwoFactorAuthenticationResponse setBearerToken(String value) { this.bearerToken = value; return this; } public String getRefreshToken() { return refreshToken; } public EnableTwoFactorAuthenticationResponse setRefreshToken(String value) { this.refreshToken = value; return this; } } public static class PutOperationUnTenanted implements IPut { } }