BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
irazasyed
/
telegram-bot-sdk
/
src
/
Objects
/
Payments
📤 Upload
📝 New File
📁 New Folder
Close
Editing: ShippingQuery.php
<?php namespace Telegram\Bot\Objects\Payments; use Telegram\Bot\Objects\BaseObject; use Telegram\Bot\Objects\User; /** * Class ShippingQuery * * @link https://core.telegram.org/bots/api#shippingquery * * @property string $id Unique query identifier * @property User $from User who sent the query. * @property string $invoicePayload Bot specified invoice payload * @property ShippingAddress $shippingAddress User specified shipping address */ class ShippingQuery extends BaseObject { /** * {@inheritdoc} * * @return array{from: string, shipping_address: string} */ public function relations(): array { return [ 'from' => User::class, 'shipping_address' => ShippingAddress::class, ]; } }
Save
Cancel