Class: Io::Flow::V0::Models::Hop
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Hop
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#hop_estimate ⇒ Object
readonly
Returns the value of attribute hop_estimate.
-
#hop_number ⇒ Object
readonly
Returns the value of attribute hop_number.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Hop
constructor
A new instance of Hop.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Hop
Returns a new instance of Hop.
33684 33685 33686 33687 33688 33689 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33684 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:hop_number, :hop_estimate], 'Hop') @hop_number = HttpClient::Preconditions.assert_class('hop_number', opts.delete(:hop_number), Integer) @hop_estimate = (x = opts.delete(:hop_estimate); x.is_a?(::Io::Flow::V0::Models::HopEstimate) ? x : ::Io::Flow::V0::Models::HopEstimate.new(x)) end |
Instance Attribute Details
#hop_estimate ⇒ Object (readonly)
Returns the value of attribute hop_estimate.
33682 33683 33684 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33682 def hop_estimate @hop_estimate end |
#hop_number ⇒ Object (readonly)
Returns the value of attribute hop_number.
33682 33683 33684 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33682 def hop_number @hop_number end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
33695 33696 33697 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33695 def copy(incoming={}) Hop.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
33699 33700 33701 33702 33703 33704 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33699 def to_hash { :hop_number => hop_number, :hop_estimate => hop_estimate.to_hash } end |
#to_json ⇒ Object
33691 33692 33693 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33691 def to_json JSON.dump(to_hash) end |