class Google::Apis::ContentV2::OrderPickupDetails
Attributes
address[RW]
Address of the pickup location where the shipment should be sent. Note that ` recipientName` in the address is the name of the business at the pickup location. Corresponds to the JSON property `address` @return [Google::Apis::ContentV2::OrderAddress]
collectors[RW]
Collectors authorized to pick up shipment from the pickup location. Corresponds to the JSON property `collectors` @return [Array<Google::Apis::ContentV2::OrderPickupDetailsCollector>]
location_id[RW]
ID of the pickup location. Corresponds to the JSON property `locationId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 5165 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/classes.rb, line 5170 def update!(**args) @address = args[:address] if args.key?(:address) @collectors = args[:collectors] if args.key?(:collectors) @location_id = args[:location_id] if args.key?(:location_id) end