/* Options: Date: 2025-10-28 01:34:00 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: ConfigurationsLookup.* //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="/configurations", Verbs="GET") @DataContract public static class ConfigurationsLookup implements IReturn> { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public String Name = null; @DataMember(Order=4) public String Description = null; @DataMember(Order=5) public Long AvatarsId = null; @DataMember(Order=6) public Integer MessageTonesId = null; @DataMember(Order=7) public Long StatusCodesId = null; public Integer getTenantsId() { return TenantsId; } public ConfigurationsLookup setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getName() { return Name; } public ConfigurationsLookup setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public ConfigurationsLookup setDescription(String value) { this.Description = value; return this; } public Long getAvatarsId() { return AvatarsId; } public ConfigurationsLookup setAvatarsId(Long value) { this.AvatarsId = value; return this; } public Integer getMessageTonesId() { return MessageTonesId; } public ConfigurationsLookup setMessageTonesId(Integer value) { this.MessageTonesId = value; return this; } public Long getStatusCodesId() { return StatusCodesId; } public ConfigurationsLookup setStatusCodesId(Long value) { this.StatusCodesId = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }