mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 14:54:47 +01:00
781 B
781 B
title | description |
---|---|
paymentCharge | paymentCharge attributes, type and example |
Constructor: paymentCharge
Attributes:
Name | Type | Required |
---|---|---|
id | string | Yes |
provider_charge_id | string | Yes |
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, }