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