Class: Io::Flow::V0::Models::Export
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Export
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Exports represent data extraction requests (e.g. download my catalog items to a CSV file)
Instance Attribute Summary collapse
-
#completed_at ⇒ Object
readonly
Returns the value of attribute completed_at.
-
#created_at ⇒ Object
readonly
Returns the value of attribute created_at.
-
#deliveries ⇒ Object
readonly
Returns the value of attribute deliveries.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#organization_q ⇒ Object
readonly
Returns the value of attribute organization_q.
-
#started_at ⇒ Object
readonly
Returns the value of attribute started_at.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Export
constructor
A new instance of Export.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Export
Returns a new instance of Export.
42811 42812 42813 42814 42815 42816 42817 42818 42819 42820 42821 42822 42823 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42811 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :type, :status, :organization_q, :created_at, :deliveries], 'Export') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::ExportType) ? x : ::Io::Flow::V0::Models::ExportType.from_json(x)) @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::ExportStatus) ? x : ::Io::Flow::V0::Models::ExportStatus.apply(x)) @organization_q = HttpClient::Preconditions.assert_class('organization_q', opts.delete(:organization_q), String) @created_at = HttpClient::Preconditions.assert_class('created_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:created_at)), DateTime) @started_at = (x = opts.delete(:started_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('started_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) @completed_at = (x = opts.delete(:completed_at); x.nil? ? nil : HttpClient::Preconditions.assert_class('completed_at', HttpClient::Helper.to_date_time_iso8601(x), DateTime)) @url = (x = opts.delete(:url); x.nil? ? nil : HttpClient::Preconditions.assert_class('url', x, String)) @deliveries = HttpClient::Preconditions.assert_class('deliveries', opts.delete(:deliveries), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ExportDelivery) ? x : ::Io::Flow::V0::Models::ExportDelivery.from_json(x)) } end |
Instance Attribute Details
#completed_at ⇒ Object (readonly)
Returns the value of attribute completed_at.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def completed_at @completed_at end |
#created_at ⇒ Object (readonly)
Returns the value of attribute created_at.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def created_at @created_at end |
#deliveries ⇒ Object (readonly)
Returns the value of attribute deliveries.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def deliveries @deliveries end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def id @id end |
#organization_q ⇒ Object (readonly)
Returns the value of attribute organization_q.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def organization_q @organization_q end |
#started_at ⇒ Object (readonly)
Returns the value of attribute started_at.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def started_at @started_at end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def status @status end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def type @type end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
42809 42810 42811 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42809 def url @url end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
42829 42830 42831 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42829 def copy(incoming={}) Export.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
42833 42834 42835 42836 42837 42838 42839 42840 42841 42842 42843 42844 42845 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42833 def to_hash { :id => id, :type => type.to_hash, :status => status.value, :organization_q => organization_q, :created_at => created_at, :started_at => started_at, :completed_at => completed_at, :url => url, :deliveries => deliveries.map { |o| o.to_hash } } end |
#to_json ⇒ Object
42825 42826 42827 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 42825 def to_json JSON.dump(to_hash) end |