/* Options: Date: 2026-09-01 02:39:03 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-stage.smartfarmertech.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SystemFunctionsAutoQueryAdd.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class SystemFunctionsAutoQueryAdd implements IReturn, ICreateDb { @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 SystemFunctionsAutoQueryAdd setSystemFunction(String value) { this.systemFunction = value; return this; } public String getLongDescription() { return longDescription; } public SystemFunctionsAutoQueryAdd setLongDescription(String value) { this.longDescription = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public SystemFunctionsAutoQueryAdd setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } private static Object responseType = SystemFunctions.class; public Object getResponseType() { return responseType; } } public static class SystemFunctions { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() public String systemFunction = null; @DataMember(Order=3) @Required() public String longDescription = null; public Long getId() { return id; } public SystemFunctions setId(Long value) { this.id = value; return this; } public String getSystemFunction() { return systemFunction; } public SystemFunctions setSystemFunction(String value) { this.systemFunction = value; return this; } public String getLongDescription() { return longDescription; } public SystemFunctions setLongDescription(String value) { this.longDescription = value; return this; } } }