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.
44490 44491 44492 44493 44494 44495 44496 44497 44498 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44490 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.
44488 44489 44490 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44488 def carrier @carrier end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
44488 44489 44490 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44488 def id @id end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
44488 44489 44490 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44488 def status @status end |
#tracking ⇒ Object (readonly)
Returns the value of attribute tracking.
44488 44489 44490 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44488 def tracking @tracking end |
#tracking_number ⇒ Object (readonly)
Returns the value of attribute tracking_number.
44488 44489 44490 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44488 def tracking_number @tracking_number end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
44504 44505 44506 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44504 def copy(incoming={}) TrackingLabelSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
44508 44509 44510 44511 44512 44513 44514 44515 44516 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44508 def to_hash { :id => id, :tracking => tracking.to_hash, :status => status.value, :carrier => carrier, :tracking_number => tracking_number } end |
#to_json ⇒ Object
44500 44501 44502 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 44500 def to_json JSON.dump(to_hash) end |