Class: Io::Flow::V0::Models::ShopifyItemEventData

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 = {}) ⇒ ShopifyItemEventData

Returns a new instance of ShopifyItemEventData.



62516
62517
62518
62519
62520
62521
62522
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62516

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:created_at, :experience, :item], 'ShopifyItemEventData')
  @created_at = HttpClient::Preconditions.assert_class('created_at', HttpClient::Helper.to_date_time_iso8601(opts.delete(:created_at)), DateTime)
  @experience = (x = opts.delete(:experience); x.is_a?(::Io::Flow::V0::Models::ExperienceReference) ? x : ::Io::Flow::V0::Models::ExperienceReference.new(x))
  @item = (x = opts.delete(:item); x.is_a?(::Io::Flow::V0::Models::CatalogItemSummary) ? x : ::Io::Flow::V0::Models::CatalogItemSummary.new(x))
end

Instance Attribute Details

#created_atObject (readonly)

Returns the value of attribute created_at.



62514
62515
62516
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62514

def created_at
  @created_at
end

#experienceObject (readonly)

Returns the value of attribute experience.



62514
62515
62516
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62514

def experience
  @experience
end

#itemObject (readonly)

Returns the value of attribute item.



62514
62515
62516
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62514

def item
  @item
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



62528
62529
62530
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62528

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

#to_hashObject



62532
62533
62534
62535
62536
62537
62538
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62532

def to_hash
  {
    :created_at => created_at,
    :experience => experience.to_hash,
    :item => item.to_hash
  }
end

#to_jsonObject



62524
62525
62526
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 62524

def to_json
  JSON.dump(to_hash)
end