Sha256: 0c967f189330204b018a0a212000e911e83b25f8a3da7321ee73c1b2cf6ba9a2

Contents?: true

Size: 546 Bytes

Versions: 4

Compression:

Stored size: 546 Bytes

Contents

module TD::Types
  # Order information.
  #
  # @attr name [String] Name of the user.
  # @attr phone_number [String] Phone number of the user.
  # @attr email_address [String] Email address of the user.
  # @attr shipping_address [TD::Types::Address, nil] Shipping address for this order; may be null.
  class OrderInfo < Base
    attribute :name, TD::Types::String
    attribute :phone_number, TD::Types::String
    attribute :email_address, TD::Types::String
    attribute :shipping_address, TD::Types::Address.optional.default(nil)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

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