/* Options: Date: 2026-04-04 06:45:30 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: AddUserProfile.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Add a Users Profile information' */ // @Route("/profiles", "POST") // @Api(Description="Add a Users Profile information'") public class AddUserProfile : IReturn, Codable { public typealias Return = AddUserProfileResponse public var userIds:[String]? public var contactIds:[String]? public var profileToShareId:String? required public init(){} } public class AddUserProfileResponse : 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 profileToShareId:String? /** * Service Stack Response Status. */ // @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") public var responseStatus:ResponseStatus? required public init(){} }