Class: Io::Flow::V0::Models::ScheduledExportForm
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ScheduledExportForm
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#hour ⇒ Object
readonly
Returns the value of attribute hour.
-
#minute ⇒ Object
readonly
Returns the value of attribute minute.
-
#organization_q ⇒ Object
readonly
Returns the value of attribute organization_q.
-
#timezone ⇒ Object
readonly
Returns the value of attribute timezone.
-
#types ⇒ Object
readonly
Returns the value of attribute types.
-
#user_id ⇒ Object
readonly
Returns the value of attribute user_id.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ScheduledExportForm
constructor
A new instance of ScheduledExportForm.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ScheduledExportForm
Returns a new instance of ScheduledExportForm.
22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22649 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:user_id, :organization_q, :hour, :minute, :timezone, :types], 'ScheduledExportForm') @user_id = HttpClient::Preconditions.assert_class('user_id', opts.delete(:user_id), String) @organization_q = HttpClient::Preconditions.assert_class('organization_q', opts.delete(:organization_q), String) @hour = HttpClient::Preconditions.assert_class('hour', opts.delete(:hour), Integer) @minute = HttpClient::Preconditions.assert_class('minute', opts.delete(:minute), Integer) @timezone = HttpClient::Preconditions.assert_class('timezone', opts.delete(:timezone), String) @types = HttpClient::Preconditions.assert_class('types', opts.delete(:types), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ExportType) ? x : ::Io::Flow::V0::Models::ExportType.from_json(x)) } end |
Instance Attribute Details
#hour ⇒ Object (readonly)
Returns the value of attribute hour.
22647 22648 22649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22647 def hour @hour end |
#minute ⇒ Object (readonly)
Returns the value of attribute minute.
22647 22648 22649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22647 def minute @minute end |
#organization_q ⇒ Object (readonly)
Returns the value of attribute organization_q.
22647 22648 22649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22647 def organization_q @organization_q end |
#timezone ⇒ Object (readonly)
Returns the value of attribute timezone.
22647 22648 22649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22647 def timezone @timezone end |
#types ⇒ Object (readonly)
Returns the value of attribute types.
22647 22648 22649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22647 def types @types end |
#user_id ⇒ Object (readonly)
Returns the value of attribute user_id.
22647 22648 22649 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22647 def user_id @user_id end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
22664 22665 22666 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22664 def copy(incoming={}) ScheduledExportForm.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22668 def to_hash { :user_id => user_id, :organization_q => organization_q, :hour => hour, :minute => minute, :timezone => timezone, :types => types.map { |o| o.to_hash } } end |
#to_json ⇒ Object
22660 22661 22662 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22660 def to_json JSON.dump(to_hash) end |