/* Options: Date: 2026-04-04 01:03:56 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: RemoveUserProfile.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Removes a Users Profile' */ // @Route("/profiles/remove/{UserProfileId}", "PUT") // @Api(Description="Removes a Users Profile'") public class RemoveUserProfile : IReturn, Codable { public typealias Return = RemoveUserProfileResponse public var userProfileId:String? required public init(){} } public class RemoveUserProfileResponse : Codable { public var errors:[ResponseError]? /** * 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 var userProfileId:String? /** * Service Stack Response Status. */ // @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") public var responseStatus:ResponseStatus? required public init(){} }