* @method string getId() Unique identifier of the transaction. Coincides with the identifer of the original transaction for refund transactions.
15
* @method int getAmount() Number of Telegram Stars transferred by the transaction
16
* @method int getDate() Date the transaction was created in Unix time
17
* @method User getSource() Optional. Source of the transaction. Can be a user, a bot, or an app. Null for refund transactions.
18
* @method User getReceiver() Optional. Receiver of the transaction. Can be a user, a bot, or an app. Null for refund transactions.
19
*
20
* @method $this setId(string $id) Unique identifier of the transaction. Coincides with the identifer of the original transaction for refund transactions.
21
* @method $this setAmount(int $amount) Number of Telegram Stars transferred by the transaction
22
* @method $this setDate(int $date) Date the transaction was created in Unix time
23
* @method $this setSource(User $source) Optional. Source of the transaction. Can be a user, a bot, or an app. Null for refund transactions.
24
* @method $this setReceiver(User $receiver) Optional. Receiver of the transaction. Can be a user, a bot, or an app. Null for refund transactions.