Sha256: 08af5d5567e1802d128e322066101ff16a487bbbf68d07a5c14b8218ebf9b998

Contents?: true

Size: 605 Bytes

Versions: 4

Compression:

Stored size: 605 Bytes

Contents

module TD::Types
  # A new incoming shipping query; for bots only.
  # Only for invoices with flexible price.
  #
  # @attr id [Integer] Unique query identifier.
  # @attr sender_user_id [Integer] Identifier of the user who sent the query.
  # @attr invoice_payload [String] Invoice payload.
  # @attr shipping_address [TD::Types::Address] User shipping address.
  class Update::NewShippingQuery < Update
    attribute :id, TD::Types::Integer
    attribute :sender_user_id, TD::Types::Integer
    attribute :invoice_payload, TD::Types::String
    attribute :shipping_address, TD::Types::Address
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/update/new_shipping_query.rb
tdlib-ruby-2.2.0 lib/tdlib/types/update/new_shipping_query.rb
tdlib-ruby-2.1.0 lib/tdlib/types/update/new_shipping_query.rb
tdlib-ruby-2.0.0 lib/tdlib/types/update/new_shipping_query.rb