Sha256: dbbec7375bbde4e2011380fae8ab8d4fc464ba43a5a99c0dde88ad26d1a57214
Contents?: true
Size: 754 Bytes
Versions: 1
Compression:
Stored size: 754 Bytes
Contents
module TD::Types # A payment has been completed. # # @attr invoice_chat_id [Integer] Identifier of the chat, containing the corresponding invoice message; 0 if unknown. # @attr invoice_message_id [Integer] Identifier of the message with the corresponding invoice; can be an identifier # of a deleted message. # @attr currency [String] Currency for the price of the product. # @attr total_amount [Integer] Total price for the product, in the smallest units of the currency. class MessageContent::PaymentSuccessful < MessageContent attribute :invoice_chat_id, TD::Types::Integer attribute :invoice_message_id, TD::Types::Integer attribute :currency, TD::Types::String attribute :total_amount, TD::Types::Integer end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/message_content/payment_successful.rb |