/* Options: Date: 2025-12-06 09:21:09 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: AgentStateLicenseRequest.* //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/AgentStateLicense/{AgentRegistrationTempId}", Verbs="GET,POST,OPTIONS") public static class AgentStateLicenseRequest implements IReturn { public ArrayList AgentStateLicense = new ArrayList(); public Integer AgentRegistrationTempId = null; public ArrayList getAgentStateLicense() { return AgentStateLicense; } public AgentStateLicenseRequest setAgentStateLicense(ArrayList value) { this.AgentStateLicense = value; return this; } public Integer getAgentRegistrationTempId() { return AgentRegistrationTempId; } public AgentStateLicenseRequest setAgentRegistrationTempId(Integer value) { this.AgentRegistrationTempId = value; return this; } private static Object responseType = AgentStateLicenseResponse.class; public Object getResponseType() { return responseType; } } public static class AgentStateLicenseResponse { public ResponseStatus ResponseStatus = null; public ArrayList AgentStateLicense = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AgentStateLicenseResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getAgentStateLicense() { return AgentStateLicense; } public AgentStateLicenseResponse setAgentStateLicense(ArrayList value) { this.AgentStateLicense = value; return this; } } public static class AgentStateLicense { public Integer AgentRegistrationTempId = null; public String State = null; public String LicenseNum = null; public Integer getAgentRegistrationTempId() { return AgentRegistrationTempId; } public AgentStateLicense setAgentRegistrationTempId(Integer value) { this.AgentRegistrationTempId = value; return this; } public String getState() { return State; } public AgentStateLicense setState(String value) { this.State = value; return this; } public String getLicenseNum() { return LicenseNum; } public AgentStateLicense setLicenseNum(String value) { this.LicenseNum = value; return this; } } }