/* Options: Date: 2026-04-04 06:54:42 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: ConnectionStatusUpdate.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Update the status of the specified connection */ // @Route("/connections/{ConnectionId}/cancel") // @Route("/connections/{ConnectionId}/remove") // @Api(Description="Update the status of the specified connection") public class ConnectionStatusUpdate : IReturn, Codable { public typealias Return = ConnectionStatusUpdateResponse /** * Connection to be updated */ // @ApiMember(Description="Connection to be updated", IsRequired=true, Name="ConnectionId") public var connectionId:String? /** * Id of the contact linked to the connection */ // @ApiMember(Description="Id of the contact linked to the connection", IsRequired=true, Name="ContactId") public var contactId:String? /** * Type of contact being connected with. For e.g. Real Person, Virtual Person etc. */ // @ApiMember(DataType="Guid", Description="Type of contact being connected with. For e.g. Real Person, Virtual Person etc.", IsRequired=true, Name="ContactTypeId") public var contactTypeId:String? /** * Role Id linked to the connection request */ // @ApiMember(Description="Role Id linked to the connection request", IsRequired=true, Name="RoleId") public var roleId:String? required public init(){} } public class ConnectionStatusUpdateResponse : Codable { public var responseStatus:ResponseStatus? required public init(){} }