mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.4 KiB
1.4 KiB
title | description | nav_exclude | image |
---|---|---|---|
inputPhotoFileLocation | Use this object to download a photo with upload.getFile method | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Constructor: inputPhotoFileLocation
Use this object to download a photo with upload.getFile method
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | long | Yes | Photo ID, obtained from the photo object |
access_hash | long | Yes | Photo's access hash, obtained from the photo object |
file_reference | bytes | Yes | File reference |
thumb_size | string | Yes | The PhotoSize to download: must be set to the type field of the desired PhotoSize object of the photo |
Type: InputFileLocation
Example:
$inputPhotoFileLocation = ['_' => 'inputPhotoFileLocation', 'id' => long, 'access_hash' => long, 'file_reference' => 'bytes', 'thumb_size' => 'string'];