--- title: inputChatUploadedPhoto description: inputChatUploadedPhoto attributes, type and example --- ## Constructor: inputChatUploadedPhoto [Back to constructors index](index.md) ### Attributes: | Name | Type | Required | |----------|---------------|----------| |file|[File path or InputFile](../types/InputFile.md) | Yes| |crop|[InputPhotoCrop](../types/InputPhotoCrop.md) | Yes| ### Type: [InputChatPhoto](../types/InputChatPhoto.md) ### Example: ``` $inputChatUploadedPhoto = ['_' => 'inputChatUploadedPhoto', 'file' => InputFile, 'crop' => InputPhotoCrop]; ``` [PWRTelegram](https://pwrtelegram.xyz) json-encoded version: ``` {"_": "inputChatUploadedPhoto", "file": InputFile, "crop": InputPhotoCrop} ``` Or, if you're into Lua: ``` inputChatUploadedPhoto={_='inputChatUploadedPhoto', file=InputFile, crop=InputPhotoCrop} ```