Class: Io::Flow::V0::Models::ShopifySyncStatus
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShopifySyncStatus
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#buckets ⇒ Object
readonly
Returns the value of attribute buckets.
-
#interval_seconds ⇒ Object
readonly
Returns the value of attribute interval_seconds.
-
#range ⇒ Object
readonly
Returns the value of attribute range.
-
#sync_check ⇒ Object
readonly
Returns the value of attribute sync_check.
-
#total ⇒ Object
readonly
Returns the value of attribute total.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShopifySyncStatus
constructor
A new instance of ShopifySyncStatus.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ ShopifySyncStatus
Returns a new instance of ShopifySyncStatus.
49345 49346 49347 49348 49349 49350 49351 49352 49353 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49345 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:sync_check, :range, :interval_seconds, :total, :buckets], 'ShopifySyncStatus') @sync_check = (x = opts.delete(:sync_check); x.is_a?(::Io::Flow::V0::Models::ShopifySyncCheck) ? x : ::Io::Flow::V0::Models::ShopifySyncCheck.apply(x)) @range = (x = opts.delete(:range); x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x)) @interval_seconds = HttpClient::Preconditions.assert_class('interval_seconds', opts.delete(:interval_seconds), Integer) @total = HttpClient::Preconditions.assert_class('total', opts.delete(:total), Integer) @buckets = HttpClient::Preconditions.assert_class('buckets', opts.delete(:buckets), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ShopifyEventBucket) ? x : ::Io::Flow::V0::Models::ShopifyEventBucket.from_json(x)) } end |
Instance Attribute Details
#buckets ⇒ Object (readonly)
Returns the value of attribute buckets.
49343 49344 49345 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49343 def buckets @buckets end |
#interval_seconds ⇒ Object (readonly)
Returns the value of attribute interval_seconds.
49343 49344 49345 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49343 def interval_seconds @interval_seconds end |
#range ⇒ Object (readonly)
Returns the value of attribute range.
49343 49344 49345 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49343 def range @range end |
#sync_check ⇒ Object (readonly)
Returns the value of attribute sync_check.
49343 49344 49345 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49343 def sync_check @sync_check end |
#total ⇒ Object (readonly)
Returns the value of attribute total.
49343 49344 49345 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49343 def total @total end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
49359 49360 49361 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49359 def copy(incoming={}) ShopifySyncStatus.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
49363 49364 49365 49366 49367 49368 49369 49370 49371 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49363 def to_hash { :sync_check => sync_check.value, :range => range.to_hash, :interval_seconds => interval_seconds, :total => total, :buckets => buckets.map { |o| o.to_hash } } end |
#to_json ⇒ Object
49355 49356 49357 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 49355 def to_json JSON.dump(to_hash) end |