Layer 220
PhoneSendConferenceCallBroadcast
Broadcast a blockchain block to all members of a conference call, see here for more info.
method
Users
phone.sendConferenceCallBroadcast#c6701900 call:InputGroupCall block:bytes = Updates;
Parameters
| Name | Type | Description |
|---|---|---|
| Call | InputGroupCall | The conference where to broadcast the block. |
| Block | bytes | The block to broadcast. |
Returns
UpdatesPossible Errors
| Code | Type | Description |
|---|---|---|
| 400 | GROUPCALL_INVALID | The specified group call is invalid. |
Gogram Example
// PhoneSendConferenceCallBroadcast - positional arguments result, err := client.PhoneSendConferenceCallBroadcast(&tg.InputGroupCall{}, []byte{}) if err != nil { // handle error } // result is *tg.Updates