Send Invoice
Client.send_invoice()
فرستادن صورتحساب
Parameters
- title (str)
عنوان صورتحساب
- description (str)
توضیحات صورتحساب
- provider_token (str)
شماره کارت شماره کیف پول بله یا شماره درگاه و شماره پذیرنده که پول را دریافت میکند
- prices (list[
LabeledPrice
])لیست قیمت های برچسب دار
- provider_data (str)
- photo_url (str)
- photo_size (int)
- photo_width (int)
- photo_height (int)
- need_name (bool)
- need_phone_number (bool)
- need_email (bool)
- need_shipping_address (bool)
- is_flexible (bool)
- disable_notification (bool)
- reply_markup (
ReplyMarkup
)
Returns
Example
1
2
3
4
5
6
7
await bot.send_invoice(
1234567890,
"Some title",
"Some description",
"6037************",
LabeledPrice(label="Some label", amount=1000000)
)
This post is licensed under CC BY 4.0 by the author.