/* Options: Date: 2025-10-27 21:48:31 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: AvatarsEdit.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/avatars/{Id}", Verbs="PUT") @DataContract public static class AvatarsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long Id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Integer TenantsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public String Name = null; @DataMember(Order=4) @Validate(Validator="NotNull") public String Gender = null; @DataMember(Order=5) @Validate(Validator="NotNull") public String AgeGroup = null; @DataMember(Order=6) @Validate(Validator="NotNull") public String Style = null; @DataMember(Order=7) @Validate(Validator="NotNull") public String ImageUrl = null; @DataMember(Order=8) @Validate(Validator="NotNull") public String EthnicGroup = null; public Long getId() { return Id; } public AvatarsEdit setId(Long value) { this.Id = value; return this; } public Integer getTenantsId() { return TenantsId; } public AvatarsEdit setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getName() { return Name; } public AvatarsEdit setName(String value) { this.Name = value; return this; } public String getGender() { return Gender; } public AvatarsEdit setGender(String value) { this.Gender = value; return this; } public String getAgeGroup() { return AgeGroup; } public AvatarsEdit setAgeGroup(String value) { this.AgeGroup = value; return this; } public String getStyle() { return Style; } public AvatarsEdit setStyle(String value) { this.Style = value; return this; } public String getImageUrl() { return ImageUrl; } public AvatarsEdit setImageUrl(String value) { this.ImageUrl = value; return this; } public String getEthnicGroup() { return EthnicGroup; } public AvatarsEdit setEthnicGroup(String value) { this.EthnicGroup = value; return this; } private static Object responseType = AvatarsEditResponse.class; public Object getResponseType() { return responseType; } } public static class AvatarsEditResponse { @DataMember(Order=1) public Long Id = null; @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; @DataMember(Order=10) public ResponseStatus ResponseStatus = null; public Long getId() { return Id; } public AvatarsEditResponse setId(Long value) { this.Id = value; return this; } public Integer getTenantsId() { return TenantsId; } public AvatarsEditResponse setTenantsId(Integer value) { this.TenantsId = value; return this; } public String getName() { return Name; } public AvatarsEditResponse setName(String value) { this.Name = value; return this; } public String getGender() { return Gender; } public AvatarsEditResponse setGender(String value) { this.Gender = value; return this; } public String getAgeGroup() { return AgeGroup; } public AvatarsEditResponse setAgeGroup(String value) { this.AgeGroup = value; return this; } public String getStyle() { return Style; } public AvatarsEditResponse setStyle(String value) { this.Style = value; return this; } public String getImageUrl() { return ImageUrl; } public AvatarsEditResponse setImageUrl(String value) { this.ImageUrl = value; return this; } public String getEthnicGroup() { return EthnicGroup; } public AvatarsEditResponse setEthnicGroup(String value) { this.EthnicGroup = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public AvatarsEditResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }