/* Options: Date: 2025-10-28 02:14:05 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: AvatarsLookup.* //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="/avatars", Verbs="GET") @DataContract public static class AvatarsLookup implements IReturn> { @DataMember(Order=2) public Integer TenantsId = null; @DataMember(Order=3) public String Name = null; @DataMember(Order=4) public String Gender = null; @DataMember(Order=5) public String AgeGroup = null; @DataMember(Order=6) public String Style = null; @DataMember(Order=7) public String ImageUrl = null; @DataMember(Order=8) public String EthnicGroup = null; public Integer getTenantsId() { return TenantsId; } public AvatarsLookup setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getName() { return Name; } public AvatarsLookup setName(String value) { this.Name = value; return this; } public String getGender() { return Gender; } public AvatarsLookup setGender(String value) { this.Gender = value; return this; } public String getAgeGroup() { return AgeGroup; } public AvatarsLookup setAgeGroup(String value) { this.AgeGroup = value; return this; } public String getStyle() { return Style; } public AvatarsLookup setStyle(String value) { this.Style = value; return this; } public String getImageUrl() { return ImageUrl; } public AvatarsLookup setImageUrl(String value) { this.ImageUrl = value; return this; } public String getEthnicGroup() { return EthnicGroup; } public AvatarsLookup setEthnicGroup(String value) { this.EthnicGroup = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }