MadelineProto/old_docs/API_docs_v65/constructors/payments_paymentReceipt.md
Daniil Gentili 1eb2fc0b4f fix
2017-04-21 13:27:04 +02:00

1.4 KiB

title description
payments.paymentReceipt payments_paymentReceipt attributes, type and example

Constructor: payments.paymentReceipt

Back to constructors index

Attributes:

Name Type Required
date int Yes
bot_id int Yes
invoice Invoice Yes
provider_id int Yes
info PaymentRequestedInfo Optional
shipping ShippingOption Optional
currency string Yes
total_amount long Yes
credentials_title string Yes
users Array of User Yes

Type: payments_PaymentReceipt

Example:

$payments_paymentReceipt = ['_' => 'payments.paymentReceipt', 'date' => int, 'bot_id' => int, 'invoice' => Invoice, 'provider_id' => int, 'info' => PaymentRequestedInfo, 'shipping' => ShippingOption, 'currency' => string, 'total_amount' => long, 'credentials_title' => string, 'users' => [User], ];

Or, if you're into Lua:

payments_paymentReceipt={_='payments.paymentReceipt', date=int, bot_id=int, invoice=Invoice, provider_id=int, info=PaymentRequestedInfo, shipping=ShippingOption, currency=string, total_amount=long, credentials_title=string, users={User}, }