Class: Io::Flow::V0::Models::Dimension
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Dimension
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#depth ⇒ Object
readonly
Returns the value of attribute depth.
-
#diameter ⇒ Object
readonly
Returns the value of attribute diameter.
-
#length ⇒ Object
readonly
Returns the value of attribute length.
-
#weight ⇒ Object
readonly
Returns the value of attribute weight.
-
#width ⇒ Object
readonly
Returns the value of attribute width.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Dimension
constructor
A new instance of Dimension.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Dimension
Returns a new instance of Dimension.
15070 15071 15072 15073 15074 15075 15076 15077 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15070 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) @depth = (x = opts.delete(:depth); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Measurement) ? x : ::Io::Flow::V0::Models::Measurement.new(x))) @diameter = (x = opts.delete(:diameter); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Measurement) ? x : ::Io::Flow::V0::Models::Measurement.new(x))) @length = (x = opts.delete(:length); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Measurement) ? x : ::Io::Flow::V0::Models::Measurement.new(x))) @weight = (x = opts.delete(:weight); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Measurement) ? x : ::Io::Flow::V0::Models::Measurement.new(x))) @width = (x = opts.delete(:width); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Measurement) ? x : ::Io::Flow::V0::Models::Measurement.new(x))) end |
Instance Attribute Details
#depth ⇒ Object (readonly)
Returns the value of attribute depth.
15068 15069 15070 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15068 def depth @depth end |
#diameter ⇒ Object (readonly)
Returns the value of attribute diameter.
15068 15069 15070 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15068 def diameter @diameter end |
#length ⇒ Object (readonly)
Returns the value of attribute length.
15068 15069 15070 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15068 def length @length end |
#weight ⇒ Object (readonly)
Returns the value of attribute weight.
15068 15069 15070 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15068 def weight @weight end |
#width ⇒ Object (readonly)
Returns the value of attribute width.
15068 15069 15070 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15068 def width @width end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
15083 15084 15085 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15083 def copy(incoming={}) Dimension.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
15087 15088 15089 15090 15091 15092 15093 15094 15095 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15087 def to_hash { :depth => depth.nil? ? nil : depth.to_hash, :diameter => diameter.nil? ? nil : diameter.to_hash, :length => length.nil? ? nil : length.to_hash, :weight => weight.nil? ? nil : weight.to_hash, :width => width.nil? ? nil : width.to_hash } end |
#to_json ⇒ Object
15079 15080 15081 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 15079 def to_json JSON.dump(to_hash) end |