Class: Io::Flow::V0::Models::TrackingLabelSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TrackingLabelSummary

Returns a new instance of TrackingLabelSummary.



66468
66469
66470
66471
66472
66473
66474
66475
66476
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66468

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

#carrierObject (readonly)

Returns the value of attribute carrier.



66466
66467
66468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66466

def carrier
  @carrier
end

#idObject (readonly)

Returns the value of attribute id.



66466
66467
66468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66466

def id
  @id
end

#statusObject (readonly)

Returns the value of attribute status.



66466
66467
66468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66466

def status
  @status
end

#trackingObject (readonly)

Returns the value of attribute tracking.



66466
66467
66468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66466

def tracking
  @tracking
end

#tracking_numberObject (readonly)

Returns the value of attribute tracking_number.



66466
66467
66468
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66466

def tracking_number
  @tracking_number
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



66482
66483
66484
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66482

def copy(incoming={})
  TrackingLabelSummary.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



66486
66487
66488
66489
66490
66491
66492
66493
66494
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66486

def to_hash
  {
    :id => id,
    :tracking => tracking.to_hash,
    :status => status.value,
    :carrier => carrier,
    :tracking_number => tracking_number
  }
end

#to_jsonObject



66478
66479
66480
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66478

def to_json
  JSON.dump(to_hash)
end