Sha256: 6e413f3fd00d2a83e518c530efad05bc82f70980833d50c6e2debea23ae8fb5f

Contents?: true

Size: 478 Bytes

Versions: 3

Compression:

Stored size: 478 Bytes

Contents

module TD::Types
  # One shipping option.
  #
  # @attr id [TD::Types::String] Shipping option identifier.
  # @attr title [TD::Types::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

3 entries across 3 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.4 lib/tdlib/types/shipping_option.rb
tdlib-schema-1.7.0.3 lib/tdlib/types/shipping_option.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/shipping_option.rb