/* Options: Date: 2025-10-27 22:15:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TwoFAEnableSubmitRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/twofa/enable", Verbs="POST") public static class TwoFAEnableSubmitRequest implements IReturn { @Required() public Integer VerificationCode = null; public Integer getVerificationCode() { return VerificationCode; } public TwoFAEnableSubmitRequest setVerificationCode(Integer value) { this.VerificationCode = value; return this; } private static Object responseType = TwoFAEnableSubmitResponse.class; public Object getResponseType() { return responseType; } } public static class TwoFAEnableSubmitResponse { public ArrayList RecoveryCodes = null; public ArrayList getRecoveryCodes() { return RecoveryCodes; } public TwoFAEnableSubmitResponse setRecoveryCodes(ArrayList value) { this.RecoveryCodes = value; return this; } } }