/* Options: Date: 2026-04-04 06:48:57 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RemoveUserProfile.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class RemoveUserProfileResponse implements IConvertible { List? Errors; /** * 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") String? UserProfileId; /** * Service Stack Response Status. */ // @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") ResponseStatus? ResponseStatus; RemoveUserProfileResponse({this.Errors,this.UserProfileId,this.ResponseStatus}); RemoveUserProfileResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Errors = JsonConverters.fromJson(json['Errors'],'List',context!); UserProfileId = json['UserProfileId']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Errors': JsonConverters.toJson(Errors,'List',context!), 'UserProfileId': UserProfileId, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "RemoveUserProfileResponse"; TypeContext? context = _ctx; } /** * Removes a Users Profile' */ // @Route("/profiles/remove/{UserProfileId}", "PUT") // @Api(Description="Removes a Users Profile'") class RemoveUserProfile implements IReturn, IConvertible, IPut { String? UserProfileId; RemoveUserProfile({this.UserProfileId}); RemoveUserProfile.fromJson(Map json) { fromMap(json); } fromMap(Map json) { UserProfileId = json['UserProfileId']; return this; } Map toJson() => { 'UserProfileId': UserProfileId }; createResponse() => RemoveUserProfileResponse(); getResponseTypeName() => "RemoveUserProfileResponse"; getTypeName() => "RemoveUserProfile"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'pfapi.pstpf.com.au', types: { 'RemoveUserProfileResponse': TypeInfo(TypeOf.Class, create:() => RemoveUserProfileResponse()), 'RemoveUserProfile': TypeInfo(TypeOf.Class, create:() => RemoveUserProfile()), });