/* Options: Date: 2025-12-06 06:10:50 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AgentResetMfaRequest.* //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="/v1/AgentResetMfa", Verbs="POST,OPTIONS") public static class AgentResetMfaRequest implements IReturn { public String AgentName = null; public String AgentEmail = null; public Integer AgentId = null; public String getAgentName() { return AgentName; } public AgentResetMfaRequest setAgentName(String value) { this.AgentName = value; return this; } public String getAgentEmail() { return AgentEmail; } public AgentResetMfaRequest setAgentEmail(String value) { this.AgentEmail = value; return this; } public Integer getAgentId() { return AgentId; } public AgentResetMfaRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = AgentStoreNameResponse.class; public Object getResponseType() { return responseType; } } public static class AgentStoreNameResponse { public ResponseStatus ResponseStatus = null; public String AgentStoreName = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentStoreNameResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public String getAgentStoreName() { return AgentStoreName; } public AgentStoreNameResponse setAgentStoreName(String value) { this.AgentStoreName = value; return this; } } }