Class: Google::Apis::ContentV2::InventoryPickup
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::InventoryPickup
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#pickup_method ⇒ String
Whether store pickup is available for this offer and whether the pickup option should be shown as buy, reserve, or not supported.
-
#pickup_sla ⇒ String
The expected date that an order will be ready for pickup, relative to when the order is placed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InventoryPickup
constructor
A new instance of InventoryPickup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InventoryPickup
Returns a new instance of InventoryPickup
3114 3115 3116 |
# File 'generated/google/apis/content_v2/classes.rb', line 3114 def initialize(**args) update!(**args) end |
Instance Attribute Details
#pickup_method ⇒ String
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.
Corresponds to the JSON property pickupMethod
3105 3106 3107 |
# File 'generated/google/apis/content_v2/classes.rb', line 3105 def pickup_method @pickup_method end |
#pickup_sla ⇒ 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.
Corresponds to the JSON property pickupSla
3112 3113 3114 |
# File 'generated/google/apis/content_v2/classes.rb', line 3112 def pickup_sla @pickup_sla end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3119 3120 3121 3122 |
# File 'generated/google/apis/content_v2/classes.rb', line 3119 def update!(**args) @pickup_method = args[:pickup_method] if args.key?(:pickup_method) @pickup_sla = args[:pickup_sla] if args.key?(:pickup_sla) end |