Class: Io::Flow::V0::Models::ShippingConfigurationUpserted

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

Instance Attribute Summary collapse

Attributes inherited from Event

#discriminator

Instance Method Summary collapse

Methods inherited from Event

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ ShippingConfigurationUpserted

Returns a new instance of ShippingConfigurationUpserted.



61483
61484
61485
61486
61487
61488
61489
61490
61491
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61483

def initialize(incoming={})
  super(:discriminator => Event::Types::SHIPPING_CONFIGURATION_UPSERTED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :shipping_configuration], 'ShippingConfigurationUpserted')
  @event_id = HttpClient::Preconditions.assert_class('event_id', opts.delete(:event_id), String)
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @organization = HttpClient::Preconditions.assert_class('organization', opts.delete(:organization), String)
  @shipping_configuration = (x = opts.delete(:shipping_configuration); x.is_a?(::Io::Flow::V0::Models::ShippingConfiguration) ? x : ::Io::Flow::V0::Models::ShippingConfiguration.new(x))
end

Instance Attribute Details

#event_idObject (readonly)

Returns the value of attribute event_id.



61481
61482
61483
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61481

def event_id
  @event_id
end

#organizationObject (readonly)

Returns the value of attribute organization.



61481
61482
61483
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61481

def organization
  @organization
end

#shipping_configurationObject (readonly)

Returns the value of attribute shipping_configuration.



61481
61482
61483
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61481

def shipping_configuration
  @shipping_configuration
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



61481
61482
61483
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61481

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



61497
61498
61499
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61497

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

#subtype_to_hashObject



61501
61502
61503
61504
61505
61506
61507
61508
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61501

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :organization => organization,
    :shipping_configuration => shipping_configuration.to_hash
  }
end

#to_jsonObject



61493
61494
61495
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 61493

def to_json
  JSON.dump(to_hash)
end