Class: Io::Flow::V0::Models::ShopifySyncStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ ShopifySyncStatus

Returns a new instance of ShopifySyncStatus.



63384
63385
63386
63387
63388
63389
63390
63391
63392
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63384

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

#bucketsObject (readonly)

Returns the value of attribute buckets.



63382
63383
63384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63382

def buckets
  @buckets
end

#interval_secondsObject (readonly)

Returns the value of attribute interval_seconds.



63382
63383
63384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63382

def interval_seconds
  @interval_seconds
end

#rangeObject (readonly)

Returns the value of attribute range.



63382
63383
63384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63382

def range
  @range
end

#sync_checkObject (readonly)

Returns the value of attribute sync_check.



63382
63383
63384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63382

def sync_check
  @sync_check
end

#totalObject (readonly)

Returns the value of attribute total.



63382
63383
63384
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63382

def total
  @total
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



63398
63399
63400
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63398

def copy(incoming={})
  ShopifySyncStatus.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



63402
63403
63404
63405
63406
63407
63408
63409
63410
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63402

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_jsonObject



63394
63395
63396
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 63394

def to_json
  JSON.dump(to_hash)
end