MadelineProtoDocs/docs/API_docs/constructors/paymentCharge.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

904 B

title description image
paymentCharge Payment charge https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Constructor: paymentCharge

Back to constructors index

Payment charge

Attributes:

Name Type Required Description
id string Yes ID
provider_charge_id string Yes Provider charge ID

Type: PaymentCharge

Example:

$paymentCharge = ['_' => 'paymentCharge', 'id' => 'string', 'provider_charge_id' => 'string'];

PWRTelegram json-encoded version:

{"_": "paymentCharge", "id": "string", "provider_charge_id": "string"}

Or, if you're into Lua:

paymentCharge={_='paymentCharge', id='string', provider_charge_id='string'}