/* Options: Date: 2026-04-04 06:55:14 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RemoveUserProfile.* //ExcludeTypes: //DefaultImports: */ // @DataContract export class ResponseError { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public FieldName: string; // @DataMember(Order=3) public Message: string; // @DataMember(Order=4) public Meta: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @DataContract export class ResponseStatus { // @DataMember(Order=1) public ErrorCode: string; // @DataMember(Order=2) public Message: string; // @DataMember(Order=3) public StackTrace: string; // @DataMember(Order=4) public Errors: ResponseError[]; // @DataMember(Order=5) public Meta: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RemoveUserProfileResponse { public Errors: ResponseError[]; /** @description 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 UserProfileId: string; /** @description Service Stack Response Status. */ // @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") public ResponseStatus: ResponseStatus; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Removes a Users Profile' */ // @Route("/profiles/remove/{UserProfileId}", "PUT") // @Api(Description="Removes a Users Profile'") export class RemoveUserProfile implements IReturn { public UserProfileId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RemoveUserProfile'; } public getMethod() { return 'PUT'; } public createResponse() { return new RemoveUserProfileResponse(); } }