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.
28694 28695 28696 28697 28698 28699 28700 28701 28702 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28694 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.
28692 28693 28694 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28692 def carrier @carrier end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
28692 28693 28694 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28692 def id @id end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
28692 28693 28694 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28692 def status @status end |
#tracking ⇒ Object (readonly)
Returns the value of attribute tracking.
28692 28693 28694 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28692 def tracking @tracking end |
#tracking_number ⇒ Object (readonly)
Returns the value of attribute tracking_number.
28692 28693 28694 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28692 def tracking_number @tracking_number end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
28708 28709 28710 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28708 def copy(incoming={}) TrackingLabelSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
28712 28713 28714 28715 28716 28717 28718 28719 28720 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28712 def to_hash { :id => id, :tracking => tracking.to_hash, :status => status.value, :carrier => carrier, :tracking_number => tracking_number } end |
#to_json ⇒ Object
28704 28705 28706 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 28704 def to_json JSON.dump(to_hash) end |