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
Returns a new instance of TrackingLabelSummary.
23805 23806 23807 23808 23809 23810 23811 23812 23813 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23805 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.
23803 23804 23805 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23803 def carrier @carrier end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
23803 23804 23805 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23803 def id @id end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
23803 23804 23805 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23803 def status @status end |
#tracking ⇒ Object (readonly)
Returns the value of attribute tracking.
23803 23804 23805 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23803 def tracking @tracking end |
#tracking_number ⇒ Object (readonly)
Returns the value of attribute tracking_number.
23803 23804 23805 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23803 def tracking_number @tracking_number end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
23819 23820 23821 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23819 def copy(incoming={}) TrackingLabelSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
23823 23824 23825 23826 23827 23828 23829 23830 23831 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23823 def to_hash { :id => id, :tracking => tracking.to_hash, :status => status.value, :carrier => carrier, :tracking_number => tracking_number } end |
#to_json ⇒ Object
23815 23816 23817 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23815 def to_json JSON.dump(to_hash) end |