/* Options: Date: 2025-10-28 06:41: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: StatusTypesAdd.* //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="/status_types", Verbs="POST") @DataContract public static class StatusTypesAdd implements IReturn { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public String Description = null; public Integer getTenantsId() { return TenantsId; } public StatusTypesAdd setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getDescription() { return Description; } public StatusTypesAdd setDescription(String value) { this.Description = value; return this; } private static Object responseType = StatusTypesAddResponse.class; public Object getResponseType() { return responseType; } } public static class StatusTypesAddResponse { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public String Description = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Integer getTenantsId() { return TenantsId; } public StatusTypesAddResponse setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getDescription() { return Description; } public StatusTypesAddResponse setDescription(String value) { this.Description = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public StatusTypesAddResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }