messages.editChatParticipantRank
Layer 225
Constructor ID: 0xa00f32b0
Returns: Updates
Parameters
| Name | Type | Description |
|---|---|---|
peer | InputPeer | |
participant | InputPeer | |
rank | string |
Example
go
result, err := client.Raw(&tg.EditChatParticipantRankRequest{
peer: nil, // InputPeer
participant: nil, // InputPeer
rank: "",
})
if err != nil {
panic(err)
}
print(result)