Class: ShipmentTrackingStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/g4s/tracking/default.rb

Overview

/ShipmentTrackingStatus

statusDescription - SOAP::SOAPString
statusDate - SOAP::SOAPDateTime
statusCity - SOAP::SOAPString
statusState - SOAP::SOAPString
statusCountry - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(statusDescription = nil, statusDate = nil, statusCity = nil, statusState = nil, statusCountry = nil) ⇒ ShipmentTrackingStatus

Returns a new instance of ShipmentTrackingStatus.



737
738
739
740
741
742
743
# File 'lib/g4s/tracking/default.rb', line 737

def initialize(statusDescription = nil, statusDate = nil, statusCity = nil, statusState = nil, statusCountry = nil)
  @statusDescription = statusDescription
  @statusDate = statusDate
  @statusCity = statusCity
  @statusState = statusState
  @statusCountry = statusCountry
end

Instance Attribute Details

#statusCityObject

Returns the value of attribute statusCity.



733
734
735
# File 'lib/g4s/tracking/default.rb', line 733

def statusCity
  @statusCity
end

#statusCountryObject

Returns the value of attribute statusCountry.



735
736
737
# File 'lib/g4s/tracking/default.rb', line 735

def statusCountry
  @statusCountry
end

#statusDateObject

Returns the value of attribute statusDate.



732
733
734
# File 'lib/g4s/tracking/default.rb', line 732

def statusDate
  @statusDate
end

#statusDescriptionObject

Returns the value of attribute statusDescription.



731
732
733
# File 'lib/g4s/tracking/default.rb', line 731

def statusDescription
  @statusDescription
end

#statusStateObject

Returns the value of attribute statusState.



734
735
736
# File 'lib/g4s/tracking/default.rb', line 734

def statusState
  @statusState
end