Class: Io::Flow::V0::Models::ShopifyItemEventBucket

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

Instance Attribute Summary collapse

Attributes inherited from ShopifyEventBucket

#discriminator

Instance Method Summary collapse

Methods inherited from ShopifyEventBucket

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ ShopifyItemEventBucket

Returns a new instance of ShopifyItemEventBucket.



62485
62486
62487
62488
62489
62490
62491
62492
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62485

def initialize(incoming={})
  super(:discriminator => ShopifyEventBucket::Types::SHOPIFY_ITEM_EVENT_BUCKET)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:range, :count, :data], 'ShopifyItemEventBucket')
  @range = (x = opts.delete(:range); x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x))
  @count = HttpClient::Preconditions.assert_class('count', opts.delete(:count), Integer)
  @data = HttpClient::Preconditions.assert_class('data', opts.delete(:data), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::ShopifyItemEventData) ? x : ::Io::Flow::V0::Models::ShopifyItemEventData.new(x)) }
end

Instance Attribute Details

#countObject (readonly)

Returns the value of attribute count.



62483
62484
62485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62483

def count
  @count
end

#dataObject (readonly)

Returns the value of attribute data.



62483
62484
62485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62483

def data
  @data
end

#rangeObject (readonly)

Returns the value of attribute range.



62483
62484
62485
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62483

def range
  @range
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



62498
62499
62500
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62498

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

#subtype_to_hashObject



62502
62503
62504
62505
62506
62507
62508
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62502

def subtype_to_hash
  {
    :range => range.to_hash,
    :count => count,
    :data => data.map { |o| o.to_hash }
  }
end

#to_jsonObject



62494
62495
62496
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62494

def to_json
  JSON.dump(to_hash)
end