/* Options: Date: 2025-12-06 12:26:03 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SystemFunctionsAdd.* //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="/system_functions", Verbs="POST") @DataContract public static class SystemFunctionsAdd implements IReturn { @DataMember(Order=2) @Validate(Validator="NotNull") public String systemFunction = null; @DataMember(Order=3) @Validate(Validator="NotNull") public String longDescription = null; public String getSystemFunction() { return systemFunction; } public SystemFunctionsAdd setSystemFunction(String value) { this.systemFunction = value; return this; } public String getLongDescription() { return longDescription; } public SystemFunctionsAdd setLongDescription(String value) { this.longDescription = value; return this; } private static Object responseType = SystemFunctionsAddResponse.class; public Object getResponseType() { return responseType; } } public static class SystemFunctionsAddResponse { @DataMember(Order=2) public String systemFunction = null; @DataMember(Order=3) public String longDescription = null; @DataMember(Order=5) public ResponseStatus responseStatus = null; public String getSystemFunction() { return systemFunction; } public SystemFunctionsAddResponse setSystemFunction(String value) { this.systemFunction = value; return this; } public String getLongDescription() { return longDescription; } public SystemFunctionsAddResponse setLongDescription(String value) { this.longDescription = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public SystemFunctionsAddResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }