mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-15 10:48:54 +03:00
VoIP: add invitee field to CallInviteContent
This commit is contained in:
parent
03e89743b4
commit
69bc13dd77
1 changed files with 6 additions and 1 deletions
|
@ -45,7 +45,12 @@ data class CallInviteContent(
|
|||
* Once the invite age exceeds this value, clients should discard it.
|
||||
* They should also no longer show the call as awaiting an answer in the UI.
|
||||
*/
|
||||
@Json(name = "lifetime") val lifetime: Int?
|
||||
@Json(name = "lifetime") val lifetime: Int?,
|
||||
/**
|
||||
* The field should be added for all invites where the target is a specific user
|
||||
*/
|
||||
@Json(name = "invitee") val invitee: String? = null
|
||||
|
||||
): CallSignallingContent {
|
||||
@JsonClass(generateAdapter = true)
|
||||
data class Offer(
|
||||
|
|
Loading…
Add table
Reference in a new issue