/* Options: Date: 2025-01-08 03:10:32 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateUserProfile.* //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 { @ValidateRequest(Validator="IsAuthenticated") public static class UpdateUserProfile implements IReturn, IUpdateDb { @Validate(Validator="NotEmpty") public String displayName = null; public String avatar = null; @Validate(Validator="MaximumLength(20)") public String handle = null; public String getDisplayName() { return displayName; } public UpdateUserProfile setDisplayName(String value) { this.displayName = value; return this; } public String getAvatar() { return avatar; } public UpdateUserProfile setAvatar(String value) { this.avatar = value; return this; } public String getHandle() { return handle; } public UpdateUserProfile setHandle(String value) { this.handle = value; return this; } private static Object responseType = UserProfile.class; public Object getResponseType() { return responseType; } } public static class UserProfile { public String displayName = null; public String avatar = null; public String handle = null; public String getDisplayName() { return displayName; } public UserProfile setDisplayName(String value) { this.displayName = value; return this; } public String getAvatar() { return avatar; } public UserProfile setAvatar(String value) { this.avatar = value; return this; } public String getHandle() { return handle; } public UserProfile setHandle(String value) { this.handle = value; return this; } } public static class AppUser extends IdentityUser { public String firstName = null; public String lastName = null; public String displayName = null; public String profileUrl = null; public String avatar = null; public String handle = null; public Integer refId = null; public String refIdStr = null; public Boolean isArchived = null; public Date archivedDate = null; public String lastLoginIp = null; public Date lastLoginDate = null; public Date createdDate = null; public Date modifiedDate = null; public String getFirstName() { return firstName; } public AppUser setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public AppUser setLastName(String value) { this.lastName = value; return this; } public String getDisplayName() { return displayName; } public AppUser setDisplayName(String value) { this.displayName = value; return this; } public String getProfileUrl() { return profileUrl; } public AppUser setProfileUrl(String value) { this.profileUrl = value; return this; } public String getAvatar() { return avatar; } public AppUser setAvatar(String value) { this.avatar = value; return this; } public String getHandle() { return handle; } public AppUser setHandle(String value) { this.handle = value; return this; } public Integer getRefId() { return refId; } public AppUser setRefId(Integer value) { this.refId = value; return this; } public String getRefIdStr() { return refIdStr; } public AppUser setRefIdStr(String value) { this.refIdStr = value; return this; } public Boolean getIsArchived() { return isArchived; } public AppUser setIsArchived(Boolean value) { this.isArchived = value; return this; } public Date getArchivedDate() { return archivedDate; } public AppUser setArchivedDate(Date value) { this.archivedDate = value; return this; } public String getLastLoginIp() { return lastLoginIp; } public AppUser setLastLoginIp(String value) { this.lastLoginIp = value; return this; } public Date getLastLoginDate() { return lastLoginDate; } public AppUser setLastLoginDate(Date value) { this.lastLoginDate = value; return this; } public Date getCreatedDate() { return createdDate; } public AppUser setCreatedDate(Date value) { this.createdDate = value; return this; } public Date getModifiedDate() { return modifiedDate; } public AppUser setModifiedDate(Date value) { this.modifiedDate = value; return this; } } }