SdpMessage

@Serializable
@SerialName(value = "SdpMessage")
data class SdpMessage : BaseMessage(source)

Represents a message containing Session Description Protocol (SDP) data.

This data class encapsulates SDP-related parameters, including the actual SDP message, its type, and an associated timestamp.

Since

1.0.0

Author

Dominik Ridjic

Throws

If message or type is missing before calling Builder.build

Types

Link copied to clipboard
class Builder : ProguardKeep

Builder class for SdpMessage.

Properties

Link copied to clipboard
@SerialName(value = "param")
val message: String

The actual SDP message content.

Link copied to clipboard
@SerialName(value = "timestamp")
open override val timestamp: Double

The timestamp when the message was created or received.

Link copied to clipboard
@SerialName(value = "type")
open override val type: MessageType.Sdp

The type of the SDP message, either incoming or outgoing.