/* Options: Date: 2026-04-04 02:55:42 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: RemoveUserProfile.* //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 { /** * Removes a Users Profile' */ @Route(Path="/profiles/remove/{UserProfileId}", Verbs="PUT") @Api(Description="Removes a Users Profile'") public static class RemoveUserProfile implements IReturn { public UUID UserProfileId = null; public UUID getUserProfileId() { return UserProfileId; } public RemoveUserProfile setUserProfileId(UUID value) { this.UserProfileId = value; return this; } private static Object responseType = RemoveUserProfileResponse.class; public Object getResponseType() { return responseType; } } public static class RemoveUserProfileResponse { public ArrayList Errors = null; /** * Guid representing the object that is the User Profile Id in Eros. */ @ApiMember(DataType="Guid", Description="Guid representing the object that is the User Profile Id in Eros.", Name="UserProfileId", ParameterType="query") public UUID UserProfileId = null; /** * Service Stack Response Status. */ @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") public ResponseStatus ResponseStatus = null; public ArrayList getErrors() { return Errors; } public RemoveUserProfileResponse setErrors(ArrayList value) { this.Errors = value; return this; } public UUID getUserProfileId() { return UserProfileId; } public RemoveUserProfileResponse setUserProfileId(UUID value) { this.UserProfileId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public RemoveUserProfileResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }