Skip to content

messages.editChatPhoto

Layer 225

Constructor ID: 0x35ddd674
Returns: Updates

Parameters

NameTypeDescription
chat_idint64
photoInputChatPhoto

Example

go
result, err := client.Raw(&tg.EditChatPhotoRequest{
    chat_id: 0,
    photo: nil, // InputChatPhoto
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.