Skip to content

channels.updateColor

Layer 225

Constructor ID: 0xd8aa3671
Returns: Updates

Parameters

NameTypeDescription
for_profilebool (flags.1, optional)
channelInputChannel
colorint32 (flags.2, optional)
background_emoji_idint64 (flags.0, optional)

Example

go
result, err := client.Raw(&tg.UpdateColorRequest{
    for_profile: false,
    channel: nil, // InputChannel
    color: 0,
    background_emoji_id: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.