Class: Google::Apis::ContentV2_1::ShipmentTrackingInfo

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ShipmentTrackingInfo

Returns a new instance of ShipmentTrackingInfo.



13078
13079
13080
# File 'lib/google/apis/content_v2_1/classes.rb', line 13078

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#carrierString

The shipping carrier that handles the package. Acceptable values are: - " boxtal" - "bpost" - "chronopost" - "colisPrive" - "colissimo" - "cxt " - "deliv" - "dhl" - "dpd" - "dynamex" - "eCourier" - "easypost" - "efw" - "fedex" - "fedexSmartpost" - "geodis" - "gls" - " googleCourier" - "gsx" - "jdLogistics" - "laPoste" - "lasership" - " manual" - "mpx" - "onTrac" - "other" - "tnt" - "uds" - "ups" - " usps" Corresponds to the JSON property carrier

Returns:

  • (String)


13071
13072
13073
# File 'lib/google/apis/content_v2_1/classes.rb', line 13071

def carrier
  @carrier
end

#tracking_numberString

The tracking number for the package. Corresponds to the JSON property trackingNumber

Returns:

  • (String)


13076
13077
13078
# File 'lib/google/apis/content_v2_1/classes.rb', line 13076

def tracking_number
  @tracking_number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13083
13084
13085
13086
# File 'lib/google/apis/content_v2_1/classes.rb', line 13083

def update!(**args)
  @carrier = args[:carrier] if args.key?(:carrier)
  @tracking_number = args[:tracking_number] if args.key?(:tracking_number)
end