Sha256: 10e97ae6791809886d2b5dd1c8ab228d9164b83b2fea255e36f6d4ed66b62ef9

Contents?: true

Size: 585 Bytes

Versions: 3

Compression:

Stored size: 585 Bytes

Contents

module TD::Types
  # A payment has been completed.
  #
  # @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 minimal quantity of the currency.
  class MessageContent::PaymentSuccessful < MessageContent
    attribute :invoice_message_id, TD::Types::Integer
    attribute :currency, TD::Types::String
    attribute :total_amount, TD::Types::Integer
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-ruby-2.2.0 lib/tdlib/types/message_content/payment_successful.rb
tdlib-ruby-2.1.0 lib/tdlib/types/message_content/payment_successful.rb
tdlib-ruby-2.0.0 lib/tdlib/types/message_content/payment_successful.rb