Class: Io::Flow::V0::Models::TrackingLabelEventUpserted

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

Returns a new instance of TrackingLabelEventUpserted.



66376
66377
66378
66379
66380
66381
66382
66383
66384
66385
66386
66387
66388
66389
66390
66391
66392
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66376

def initialize(incoming={})
  super(:discriminator => Event::Types::TRACKING_LABEL_EVENT_UPSERTED)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:event_id, :timestamp, :organization, :address, :carrier, :carrier_timestamp, :carrier_tracking_number, :flow_tracking_number, :status], 'TrackingLabelEventUpserted')
  @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)
  @address = (x = opts.delete(:address); x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x))
  @carrier = HttpClient::Preconditions.assert_class('carrier', opts.delete(:carrier), String)
  @carrier_timestamp = HttpClient::Preconditions.assert_class('carrier_timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:carrier_timestamp)), DateTime)
  @carrier_tracking_number = HttpClient::Preconditions.assert_class('carrier_tracking_number', opts.delete(:carrier_tracking_number), String)
  @flow_tracking_number = HttpClient::Preconditions.assert_class('flow_tracking_number', opts.delete(:flow_tracking_number), String)
  @status = HttpClient::Preconditions.assert_class('status', opts.delete(:status), String)
  @delivery_estimate = (x = opts.delete(:delivery_estimate); x.nil? ? nil : HttpClient::Preconditions.assert_class('delivery_estimate', HttpClient::Helper.to_date_time_iso8601(x), DateTime))
  @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String))
  @order_number = (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, String))
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def address
  @address
end

#carrierObject (readonly)

Returns the value of attribute carrier.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def carrier
  @carrier
end

#carrier_timestampObject (readonly)

Returns the value of attribute carrier_timestamp.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def carrier_timestamp
  @carrier_timestamp
end

#carrier_tracking_numberObject (readonly)

Returns the value of attribute carrier_tracking_number.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def carrier_tracking_number
  @carrier_tracking_number
end

#delivery_estimateObject (readonly)

Returns the value of attribute delivery_estimate.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def delivery_estimate
  @delivery_estimate
end

#descriptionObject (readonly)

Returns the value of attribute description.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def description
  @description
end

#event_idObject (readonly)

Returns the value of attribute event_id.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def event_id
  @event_id
end

#flow_tracking_numberObject (readonly)

Returns the value of attribute flow_tracking_number.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def flow_tracking_number
  @flow_tracking_number
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def order_number
  @order_number
end

#organizationObject (readonly)

Returns the value of attribute organization.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def organization
  @organization
end

#statusObject (readonly)

Returns the value of attribute status.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def status
  @status
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



66374
66375
66376
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66374

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



66398
66399
66400
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66398

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

#subtype_to_hashObject



66402
66403
66404
66405
66406
66407
66408
66409
66410
66411
66412
66413
66414
66415
66416
66417
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66402

def subtype_to_hash
  {
    :event_id => event_id,
    :timestamp => timestamp,
    :organization => organization,
    :address => address.to_hash,
    :carrier => carrier,
    :carrier_timestamp => carrier_timestamp,
    :carrier_tracking_number => carrier_tracking_number,
    :flow_tracking_number => flow_tracking_number,
    :status => status,
    :delivery_estimate => delivery_estimate,
    :description => description,
    :order_number => order_number
  }
end

#to_jsonObject



66394
66395
66396
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66394

def to_json
  JSON.dump(to_hash)
end