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: Invoice.php
<?php namespace Telegram\Bot\Objects\Payments; use Telegram\Bot\Objects\BaseObject; /** * @link https://core.telegram.org/bots/api#invoice * * @property string $title Product name * @property string $description Product description * @property string $startParameter Unique bot deep-linking parameter that can be used to generate this invoice * @property string $currency Three-letter ISO 4217 currency code * @property int $totalAmount Total price in the smallest units of the currency (integer, not float/double) */ class Invoice extends BaseObject { /** * {@inheritdoc} */ public function relations(): array { return [ ]; } }
Save
Cancel