Class: Google::Apis::ContentV2_1::OrderPickupDetails
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::OrderPickupDetails
- 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
-
#address ⇒ Google::Apis::ContentV2_1::OrderAddress
Address of the pickup location where the shipment should be sent.
-
#collectors ⇒ Array<Google::Apis::ContentV2_1::OrderPickupDetailsCollector>
Collectors authorized to pick up shipment from the pickup location.
-
#location_id ⇒ String
ID of the pickup location.
-
#pickup_type ⇒ String
The pickup type of this order.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OrderPickupDetails
constructor
A new instance of OrderPickupDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OrderPickupDetails
Returns a new instance of OrderPickupDetails.
6028 6029 6030 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6028 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ Google::Apis::ContentV2_1::OrderAddress
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
6009 6010 6011 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6009 def address @address end |
#collectors ⇒ Array<Google::Apis::ContentV2_1::OrderPickupDetailsCollector>
Collectors authorized to pick up shipment from the pickup location.
Corresponds to the JSON property collectors
6014 6015 6016 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6014 def collectors @collectors end |
#location_id ⇒ String
ID of the pickup location.
Corresponds to the JSON property locationId
6019 6020 6021 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6019 def location_id @location_id end |
#pickup_type ⇒ String
The pickup type of this order. Acceptable values are: - "merchantStore" - "
merchantStoreCurbside" - "merchantStoreLocker" - "thirdPartyPickupPoint" -
"thirdPartyLocker"
Corresponds to the JSON property pickupType
6026 6027 6028 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6026 def pickup_type @pickup_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6033 6034 6035 6036 6037 6038 |
# File 'lib/google/apis/content_v2_1/classes.rb', line 6033 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) @pickup_type = args[:pickup_type] if args.key?(:pickup_type) end |