/* Options: Date: 2025-09-03 18:49:59 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: GenerateTwoFactorAuthenticationKeyRequest.* //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/generate-key", Verbs="PUT") public static class GenerateTwoFactorAuthenticationKeyRequest extends PutOperationTenanted implements IReturn { private static Object responseType = GenerateTwoFactorAuthenticationKeyResponse.class; public Object getResponseType() { return responseType; } } public static class GenerateTwoFactorAuthenticationKeyResponse { public ResponseStatus responseStatus = null; public String twoFactorUri = null; public ResponseStatus getResponseStatus() { return responseStatus; } public GenerateTwoFactorAuthenticationKeyResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getTwoFactorUri() { return twoFactorUri; } public GenerateTwoFactorAuthenticationKeyResponse setTwoFactorUri(String value) { this.twoFactorUri = value; return this; } } public static class PutOperationTenanted extends PutOperationUnTenanted implements ITenantedRequest { public String organisationId = null; public String getOrganisationId() { return organisationId; } public PutOperationTenanted setOrganisationId(String value) { this.organisationId = value; return this; } } public static interface ITenantedRequest { public String organisationId = null; } public static class PutOperationUnTenanted implements IPut { } }