/* Options: Date: 2025-01-08 03:05:56 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: GetUserProfile.* //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 GetUserProfile implements IReturn { private static Object responseType = GetUserProfileResponse.class; public Object getResponseType() { return responseType; } } public static class GetUserProfileResponse { public UserProfile result = null; public ResponseStatus responseStatus = null; public UserProfile getResult() { return result; } public GetUserProfileResponse setResult(UserProfile value) { this.result = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GetUserProfileResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } 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; } } }