Class: TD::Types::PaymentReceipt
- Defined in:
- lib/tdlib/types/payment_receipt.rb
Overview
Contains information about a successful payment.
Instance Attribute Summary collapse
-
#date ⇒ Integer
Point in time (Unix timestamp) when the payment was made.
-
#product_info ⇒ TD::Types::ProductInfo
Information about the product.
-
#seller_bot_user_id ⇒ Integer
User identifier of the seller bot.
-
#type ⇒ TD::Types::PaymentReceiptType
Type of the payment receipt.
Method Summary
Methods inherited from Base
Instance Attribute Details
#date ⇒ Integer
Point in time (Unix timestamp) when the payment was made.
8 9 10 |
# File 'lib/tdlib/types/payment_receipt.rb', line 8 def date @date end |
#product_info ⇒ TD::Types::ProductInfo
Information about the product.
8 9 10 |
# File 'lib/tdlib/types/payment_receipt.rb', line 8 def product_info @product_info end |
#seller_bot_user_id ⇒ Integer
User identifier of the seller bot.
8 9 10 |
# File 'lib/tdlib/types/payment_receipt.rb', line 8 def seller_bot_user_id @seller_bot_user_id end |
#type ⇒ TD::Types::PaymentReceiptType
Type of the payment receipt.
8 9 10 |
# File 'lib/tdlib/types/payment_receipt.rb', line 8 def type @type end |