Reject

@Serializable
data class Reject(val version: String = "1", val callId: String, val partyId: String) : CallEventContent

Matrix call reject content

See also

Constructors

Link copied to clipboard
constructor(version: String = "1", callId: String, partyId: String)

Properties

Link copied to clipboard
@SerialName(value = "call_id")
open override val callId: String
Link copied to clipboard
open override val externalUrl: String? = null
Link copied to clipboard
open override val mentions: Mentions? = null
Link copied to clipboard
@SerialName(value = "party_id")
open override val partyId: String
Link copied to clipboard
open override val relatesTo: RelatesTo? = null
Link copied to clipboard
@EncodeDefault
@SerialName(value = "version")
open override val version: String

Functions

Link copied to clipboard
open override fun copyWith(relatesTo: RelatesTo?): CallEventContent.Reject

This should return the same instance, but with the relatesTo property set to the given value. It is used for event content replacing.