Class: Io::Flow::V0::Models::TrackingLabelEventUpserted
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
Returns the value of attribute address.
-
#carrier ⇒ Object
readonly
Returns the value of attribute carrier.
-
#carrier_timestamp ⇒ Object
readonly
Returns the value of attribute carrier_timestamp.
-
#carrier_tracking_number ⇒ Object
readonly
Returns the value of attribute carrier_tracking_number.
-
#delivery_estimate ⇒ Object
readonly
Returns the value of attribute delivery_estimate.
-
#description ⇒ Object
readonly
Returns the value of attribute description.
-
#event_id ⇒ Object
readonly
Returns the value of attribute event_id.
-
#flow_tracking_number ⇒ Object
readonly
Returns the value of attribute flow_tracking_number.
-
#order_number ⇒ Object
readonly
Returns the value of attribute order_number.
-
#organization ⇒ Object
readonly
Returns the value of attribute organization.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#timestamp ⇒ Object
readonly
Returns the value of attribute timestamp.
Attributes inherited from Event
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ TrackingLabelEventUpserted
constructor
A new instance of TrackingLabelEventUpserted.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from Event
Constructor Details
#initialize(incoming = {}) ⇒ TrackingLabelEventUpserted
Returns a new instance of TrackingLabelEventUpserted.
71514 71515 71516 71517 71518 71519 71520 71521 71522 71523 71524 71525 71526 71527 71528 71529 71530 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71514 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
#address ⇒ Object (readonly)
Returns the value of attribute address.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def address @address end |
#carrier ⇒ Object (readonly)
Returns the value of attribute carrier.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def carrier @carrier end |
#carrier_timestamp ⇒ Object (readonly)
Returns the value of attribute carrier_timestamp.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def @carrier_timestamp end |
#carrier_tracking_number ⇒ Object (readonly)
Returns the value of attribute carrier_tracking_number.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def carrier_tracking_number @carrier_tracking_number end |
#delivery_estimate ⇒ Object (readonly)
Returns the value of attribute delivery_estimate.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def delivery_estimate @delivery_estimate end |
#description ⇒ Object (readonly)
Returns the value of attribute description.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def description @description end |
#event_id ⇒ Object (readonly)
Returns the value of attribute event_id.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def event_id @event_id end |
#flow_tracking_number ⇒ Object (readonly)
Returns the value of attribute flow_tracking_number.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def flow_tracking_number @flow_tracking_number end |
#order_number ⇒ Object (readonly)
Returns the value of attribute order_number.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def order_number @order_number end |
#organization ⇒ Object (readonly)
Returns the value of attribute organization.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def organization @organization end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def status @status end |
#timestamp ⇒ Object (readonly)
Returns the value of attribute timestamp.
71512 71513 71514 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71512 def @timestamp end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
71536 71537 71538 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71536 def copy(incoming={}) TrackingLabelEventUpserted.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
71540 71541 71542 71543 71544 71545 71546 71547 71548 71549 71550 71551 71552 71553 71554 71555 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71540 def subtype_to_hash { :event_id => event_id, :timestamp => , :organization => organization, :address => address.to_hash, :carrier => carrier, :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_json ⇒ Object
71532 71533 71534 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 71532 def to_json JSON.dump(to_hash) end |