Class: Io::Flow::V0::Models::EstimatedWindow
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::EstimatedWindow
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Range of time given a from and to number and the unit. For example: 1-4 hours or 4-7 days
Instance Attribute Summary collapse
-
#from ⇒ Object
readonly
Returns the value of attribute from.
-
#to ⇒ Object
readonly
Returns the value of attribute to.
-
#unit ⇒ Object
readonly
Returns the value of attribute unit.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ EstimatedWindow
constructor
A new instance of EstimatedWindow.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ EstimatedWindow
Returns a new instance of EstimatedWindow.
16022 16023 16024 16025 16026 16027 16028 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16022 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:from, :to, :unit], 'EstimatedWindow') @from = HttpClient::Preconditions.assert_class('from', opts.delete(:from), Integer) @to = HttpClient::Preconditions.assert_class('to', opts.delete(:to), Integer) @unit = (x = opts.delete(:unit); x.is_a?(::Io::Flow::V0::Models::UnitOfTime) ? x : ::Io::Flow::V0::Models::UnitOfTime.apply(x)) end |
Instance Attribute Details
#from ⇒ Object (readonly)
Returns the value of attribute from.
16020 16021 16022 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16020 def from @from end |
#to ⇒ Object (readonly)
Returns the value of attribute to.
16020 16021 16022 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16020 def to @to end |
#unit ⇒ Object (readonly)
Returns the value of attribute unit.
16020 16021 16022 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16020 def unit @unit end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
16034 16035 16036 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16034 def copy(incoming={}) EstimatedWindow.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
16038 16039 16040 16041 16042 16043 16044 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16038 def to_hash { :from => from, :to => to, :unit => unit.value } end |
#to_json ⇒ Object
16030 16031 16032 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 16030 def to_json JSON.dump(to_hash) end |