Class: Io::Flow::V0::Models::DeliveryWindowComponent
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::DeliveryWindowComponent
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#from ⇒ Object
readonly
Returns the value of attribute from.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
-
#to ⇒ Object
readonly
Returns the value of attribute to.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ DeliveryWindowComponent
constructor
A new instance of DeliveryWindowComponent.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ DeliveryWindowComponent
Returns a new instance of DeliveryWindowComponent.
17681 17682 17683 17684 17685 17686 17687 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17681 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:from, :to, :source], 'DeliveryWindowComponent') @from = HttpClient::Preconditions.assert_class('from', HttpClient::Helper.to_date_time_iso8601(opts.delete(:from)), DateTime) @to = HttpClient::Preconditions.assert_class('to', HttpClient::Helper.to_date_time_iso8601(opts.delete(:to)), DateTime) @source = (x = opts.delete(:source); x.is_a?(::Io::Flow::V0::Models::DeliveryWindowComponentSource) ? x : ::Io::Flow::V0::Models::DeliveryWindowComponentSource.apply(x)) end |
Instance Attribute Details
#from ⇒ Object (readonly)
Returns the value of attribute from.
17679 17680 17681 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17679 def from @from end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
17679 17680 17681 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17679 def source @source end |
#to ⇒ Object (readonly)
Returns the value of attribute to.
17679 17680 17681 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17679 def to @to end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
17693 17694 17695 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17693 def copy(incoming={}) DeliveryWindowComponent.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
17697 17698 17699 17700 17701 17702 17703 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17697 def to_hash { :from => from, :to => to, :source => source.value } end |
#to_json ⇒ Object
17689 17690 17691 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 17689 def to_json JSON.dump(to_hash) end |