Skip to content

messages.getPersonalChannelHistory

Layer 225

Constructor ID: 0x55fb0996
Returns: Messages

Parameters

NameTypeDescription
user_idInputUser
limitint32
max_idint32
min_idint32
hashint64

Example

go
result, err := client.Raw(&tg.GetPersonalChannelHistoryRequest{
    user_id: nil, // InputUser
    limit: 0,
    max_id: 0,
    min_id: 0,
    hash: 0,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.