diff options
| author | levlam <levlam@telegram.org> | 2026-06-24 20:19:30 +0300 |
|---|---|---|
| committer | levlam <levlam@telegram.org> | 2026-06-24 20:19:30 +0300 |
| commit | 7c9b184a89b2a88ea19a93411a043b59a92dbee0 (patch) | |
| tree | 521c38415297a4a3c2b3d3cc291c06ddf407391d /td/generate | |
| parent | 96a908547542c4919ed9831ebff622ab976f3770 (diff) | |
Improve gram_amount documentation.
Diffstat (limited to 'td/generate')
| -rw-r--r-- | td/generate/scheme/td_api.tl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/td/generate/scheme/td_api.tl b/td/generate/scheme/td_api.tl index fdf419241..c0da47d1b 100644 --- a/td/generate/scheme/td_api.tl +++ b/td/generate/scheme/td_api.tl @@ -2147,14 +2147,14 @@ tonTransactionTypeUnsupported = TonTransactionType; //@description Represents a transaction changing the amount of owned TON Grams //@id Unique identifier of the transaction -//@gram_amount The amount of added owned Grams; negative for outgoing transactions +//@gram_amount The amount of added owned Grams, in the smallest units of the cryptocurrency; negative for outgoing transactions //@is_refund True, if the transaction is a refund of a previous transaction //@date Point in time (Unix timestamp) when the transaction was completed //@type Type of the transaction tonTransaction id:string gram_amount:int53 is_refund:Bool date:int32 type:TonTransactionType = TonTransaction; //@description Represents a list of TON Gram transactions -//@gram_amount The total amount of owned Grams +//@gram_amount The total amount of owned Grams, in the smallest units of the cryptocurrency //@transactions List of Gram transactions //@next_offset The offset for the next request. If empty, then there are no more results tonTransactions gram_amount:int53 transactions:vector<tonTransaction> next_offset:string = TonTransactions; |
