/* Options: Date: 2025-10-28 02:06:24 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: LookupListsLookup.* //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="/lookup_lists", Verbs="GET") @DataContract public static class LookupListsLookup implements IReturn> { @DataMember(Order=2) public String Description = null; @DataMember(Order=3) public Boolean IsEnabled = null; @DataMember(Order=4) public Integer LookupListCategoryId = null; @DataMember(Order=5) public Date LastModifiedDate = null; @DataMember(Order=6) public UUID RowVersionGuid = null; public String getDescription() { return Description; } public LookupListsLookup setDescription(String value) { this.Description = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public LookupListsLookup setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Integer getLookupListCategoryId() { return LookupListCategoryId; } public LookupListsLookup setLookupListCategoryId(Integer value) { this.LookupListCategoryId = value; return this; } public Date getLastModifiedDate() { return LastModifiedDate; } public LookupListsLookup setLastModifiedDate(Date value) { this.LastModifiedDate = value; return this; } public UUID getRowVersionGuid() { return RowVersionGuid; } public LookupListsLookup setRowVersionGuid(UUID value) { this.RowVersionGuid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }