/* Options: Date: 2025-10-27 21:48:57 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: ActionsLookup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/actions", Verbs="GET") @DataContract public static class ActionsLookup implements IReturn> { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public String Name = null; @DataMember(Order=4) public String ActionRoute = null; @DataMember(Order=5) public Boolean PaymentAction = null; @DataMember(Order=6) public Boolean CustomAction = null; public Integer getTenantsId() { return TenantsId; } public ActionsLookup setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getName() { return Name; } public ActionsLookup setName(String value) { this.Name = value; return this; } public String getActionRoute() { return ActionRoute; } public ActionsLookup setActionRoute(String value) { this.ActionRoute = value; return this; } public Boolean isPaymentAction() { return PaymentAction; } public ActionsLookup setPaymentAction(Boolean value) { this.PaymentAction = value; return this; } public Boolean isCustomAction() { return CustomAction; } public ActionsLookup setCustomAction(Boolean value) { this.CustomAction = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }