class Google::Apis::ContentV2_1::ReturnShippingLabel
Return shipping label for a Buy on Google
merchant-managed return.
Attributes
carrier[RW]
Name of the carrier. Corresponds to the JSON property `carrier` @return [String]
label_uri[RW]
The URL for the return shipping label in PDF format Corresponds to the JSON property `labelUri` @return [String]
tracking_id[RW]
The tracking id of this return label. Corresponds to the JSON property `trackingId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 13462 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2_1/classes.rb, line 13467 def update!(**args) @carrier = args[:carrier] if args.key?(:carrier) @label_uri = args[:label_uri] if args.key?(:label_uri) @tracking_id = args[:tracking_id] if args.key?(:tracking_id) end