--- title: inputMediaPhoto description: Forwarded photo image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png --- # Constructor: inputMediaPhoto [Back to constructors index](index.md) Forwarded photo ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |id|[MessageMedia, Message, Update or InputPhoto](../types/InputPhoto.md) | Optional|Photo to be forwarded| |caption|[string](../types/string.md) | Yes|Caption| ### Type: [InputMedia](../types/InputMedia.md) ### Example: ```php $inputMediaPhoto = ['_' => 'inputMediaPhoto', 'id' => InputPhoto, 'caption' => 'string']; ``` Or, if you're into Lua: ```lua inputMediaPhoto={_='inputMediaPhoto', id=InputPhoto, caption='string'} ```