Sha256: 4c074d8575c27b2f1c874184b09de491e84904e2f4e872216521094ce3afba6f

Contents?: true

Size: 456 Bytes

Versions: 4

Compression:

Stored size: 456 Bytes

Contents

module TD::Types
  # One shipping option.
  #
  # @attr id [String] Shipping option identifier.
  # @attr title [String] Option title.
  # @attr price_parts [Array<TD::Types::LabeledPricePart>] A list of objects used to calculate the total shipping
  #   costs.
  class ShippingOption < Base
    attribute :id, TD::Types::String
    attribute :title, TD::Types::String
    attribute :price_parts, TD::Types::Array.of(TD::Types::LabeledPricePart)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

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