Skip to content

Commit

Permalink
[WEBRTC-595] Make InviteResponse values serialisable.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-Zimmerman committed Jun 15, 2021
1 parent 0e55ba8 commit 8a68eb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions telnyx_rtc/src/main/java/com/telnyx/webrtc/sdk/Call.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,11 @@ import com.telnyx.webrtc.sdk.utilities.encodeBase64
import com.telnyx.webrtc.sdk.verto.receive.*
import com.telnyx.webrtc.sdk.verto.send.*
import io.ktor.util.*
import org.webrtc.DtmfSender
import org.webrtc.IceCandidate
import org.webrtc.SessionDescription
import timber.log.Timber
import java.util.*


/**
* Class that represents a Call and handles all call related actions, including answering and ending a call.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ data class LoginResponse(val sessid: String) : ReceivedResult()
data class AnswerResponse(
@SerializedName("callID")
val callId: UUID,
@SerializedName("sdp")
val sdp: String
) : ReceivedResult()

Expand All @@ -44,6 +45,7 @@ data class AnswerResponse(
data class InviteResponse(
@SerializedName("callID")
val callId: UUID,
@SerializedName("sdp")
val sdp: String,
@SerializedName("caller_id_name")
val callerIdName: String,
Expand Down

0 comments on commit 8a68eb9

Please sign in to comment.