Skip to content

upload.saveBigFilePart

Layer 225

Constructor ID: 0xde7b673d
Returns: Bool

Parameters

NameTypeDescription
file_idint64
file_partint32
file_total_partsint32
bytes[]byte

Example

go
result, err := client.Raw(&tg.SaveBigFilePartRequest{
    file_id: 0,
    file_part: 0,
    file_total_parts: 0,
    bytes: nil,
})
if err != nil {
    panic(err)
}
print(result)

Released under the Apache-2.0 License.