Class: Io::Flow::V0::Models::TrackingLabelSummary
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::TrackingLabelSummary
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#carrier ⇒ Object
readonly
Returns the value of attribute carrier.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#tracking ⇒ Object
readonly
Returns the value of attribute tracking.
-
#tracking_number ⇒ Object
readonly
Returns the value of attribute tracking_number.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ TrackingLabelSummary
constructor
A new instance of TrackingLabelSummary.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ TrackingLabelSummary
27564 27565 27566 27567 27568 27569 27570 27571 27572 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27564 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :tracking, :status, :carrier, :tracking_number], 'TrackingLabelSummary') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @tracking = (x = opts.delete(:tracking); x.is_a?(::Io::Flow::V0::Models::TrackingSummary) ? x : ::Io::Flow::V0::Models::TrackingSummary.new(x)) @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::TrackingStatus) ? x : ::Io::Flow::V0::Models::TrackingStatus.apply(x)) @carrier = HttpClient::Preconditions.assert_class('carrier', opts.delete(:carrier), String) @tracking_number = HttpClient::Preconditions.assert_class('tracking_number', opts.delete(:tracking_number), String) end |
Instance Attribute Details
#carrier ⇒ Object (readonly)
Returns the value of attribute carrier.
27562 27563 27564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27562 def carrier @carrier end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
27562 27563 27564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27562 def id @id end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
27562 27563 27564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27562 def status @status end |
#tracking ⇒ Object (readonly)
Returns the value of attribute tracking.
27562 27563 27564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27562 def tracking @tracking end |
#tracking_number ⇒ Object (readonly)
Returns the value of attribute tracking_number.
27562 27563 27564 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27562 def tracking_number @tracking_number end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
27578 27579 27580 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27578 def copy(incoming={}) TrackingLabelSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
27582 27583 27584 27585 27586 27587 27588 27589 27590 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27582 def to_hash { :id => id, :tracking => tracking.to_hash, :status => status.value, :carrier => carrier, :tracking_number => tracking_number } end |
#to_json ⇒ Object
27574 27575 27576 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 27574 def to_json JSON.dump(to_hash) end |