Layer 220
PhoneSendSignalingData
Send Vo IP signaling data
method
Users
phone.sendSignalingData#ff7a9383 peer:InputPhoneCall data:bytes = Bool;
Parameters
| Name | Type | Description |
|---|---|---|
| Peer | InputPhoneCall | Phone call |
| Data | bytes | Signaling payload |
Returns
BoolPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | CALL_PEER_INVALID | The provided call peer object is invalid. |
Gogram Example
// PhoneSendSignalingData - positional arguments result, err := client.PhoneSendSignalingData(&tg.InputPhoneCall{}, []byte{}) if err != nil { // handle error } // result is *tg.Bool