/* Options: Date: 2026-04-04 03:04:23 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ConnectionStatusUpdate.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Update the status of the specified connection */ @Route(Path="/connections/{ConnectionId}/cancel") // @Route(Path="/connections/{ConnectionId}/remove") @Api(Description="Update the status of the specified connection") open class ConnectionStatusUpdate : IReturn { /** * Connection to be updated */ @ApiMember(Description="Connection to be updated", IsRequired=true, Name="ConnectionId") open var ConnectionId:UUID? = null /** * Id of the contact linked to the connection */ @ApiMember(Description="Id of the contact linked to the connection", IsRequired=true, Name="ContactId") open var ContactId:UUID? = null /** * 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") open var ContactTypeId:UUID? = null /** * Role Id linked to the connection request */ @ApiMember(Description="Role Id linked to the connection request", IsRequired=true, Name="RoleId") open var RoleId:UUID? = null companion object { private val responseType = ConnectionStatusUpdateResponse::class.java } override fun getResponseType(): Any? = ConnectionStatusUpdate.responseType } open class ConnectionStatusUpdateResponse { open var ResponseStatus:ResponseStatus? = null }