class Google::Apis::ContentV2::InventoryPickup
Attributes
Whether store pickup is available for this offer and whether the pickup option should be shown as buy, reserve, or not supported. Only supported for local inventory. Unless the value is “not supported”, must be submitted together with `pickupSla`. Acceptable values are: - “`buy`” - “`not supported`” - “` reserve`” - “`ship to store`” Corresponds to the JSON property `pickupMethod` @return [String]
The expected date that an order will be ready for pickup, relative to when the order is placed. Only supported for local inventory. Must be submitted together with `pickupMethod`. Acceptable values are: - “`five day`” - “`four day`” - “`multi day`” - “`multi week`” - “`next day`” - “`same day`” - “`seven day`” - “`six day`” - “`three day`” - “`two day`” Corresponds to the JSON property `pickupSla` @return [String]
Public Class Methods
# File lib/google/apis/content_v2/classes.rb, line 3175 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 3180 def update!(**args) @pickup_method = args[:pickup_method] if args.key?(:pickup_method) @pickup_sla = args[:pickup_sla] if args.key?(:pickup_sla) end