phone.inviteConferenceCallParticipant
Layer 225
Constructor ID: 0xbcf22685
Returns: Updates
Parameters
| Name | Type | Description |
|---|---|---|
video | bool (flags.0, optional) | |
call | InputGroupCall | |
user_id | InputUser |
Example
go
result, err := client.Raw(&tg.InviteConferenceCallParticipantRequest{
video: false,
call: nil, // InputGroupCall
user_id: nil, // InputUser
})
if err != nil {
panic(err)
}
print(result)