Class: Google::Apis::ContentV2_1::RegionalInventory
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2_1::RegionalInventory
- Defined in:
- generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/representations.rb
Overview
Regional inventory resource. contains the regional name and all attributes which are overridden for the specified region.
Instance Attribute Summary collapse
-
#availability ⇒ String
The availability of the product.
-
#custom_attributes ⇒ Array<Google::Apis::ContentV2_1::CustomAttribute>
A list of custom (merchant-provided) attributes.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#price ⇒ Google::Apis::ContentV2_1::Price
The price of the product.
-
#region_id ⇒ String
The ID (name) of the region.
-
#sale_price ⇒ Google::Apis::ContentV2_1::Price
The sale price of the product.
-
#sale_price_effective_date ⇒ String
A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegionalInventory
constructor
A new instance of RegionalInventory.
-
#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) ⇒ RegionalInventory
Returns a new instance of RegionalInventory.
9637 9638 9639 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9637 def initialize(**args) update!(**args) end |
Instance Attribute Details
#availability ⇒ String
The availability of the product.
Corresponds to the JSON property availability
9601 9602 9603 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9601 def availability @availability end |
#custom_attributes ⇒ Array<Google::Apis::ContentV2_1::CustomAttribute>
A list of custom (merchant-provided) attributes. It can also be used for
submitting any attribute of the feed specification in its generic form.
Corresponds to the JSON property customAttributes
9607 9608 9609 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9607 def custom_attributes @custom_attributes end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
regionalInventory".
Corresponds to the JSON property kind
9613 9614 9615 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9613 def kind @kind end |
#price ⇒ Google::Apis::ContentV2_1::Price
The price of the product.
Corresponds to the JSON property price
9618 9619 9620 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9618 def price @price end |
#region_id ⇒ String
The ID (name) of the region.
Corresponds to the JSON property regionId
9623 9624 9625 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9623 def region_id @region_id end |
#sale_price ⇒ Google::Apis::ContentV2_1::Price
The sale price of the product. Mandatory if sale_price_effective_date
is
defined.
Corresponds to the JSON property salePrice
9629 9630 9631 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9629 def sale_price @sale_price end |
#sale_price_effective_date ⇒ String
A date range represented by a pair of ISO 8601 dates separated by a space,
comma, or slash. Both dates might be specified as 'null' if undecided.
Corresponds to the JSON property salePriceEffectiveDate
9635 9636 9637 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9635 def sale_price_effective_date @sale_price_effective_date end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9642 9643 9644 9645 9646 9647 9648 9649 9650 |
# File 'generated/google/apis/content_v2_1/classes.rb', line 9642 def update!(**args) @availability = args[:availability] if args.key?(:availability) @custom_attributes = args[:custom_attributes] if args.key?(:custom_attributes) @kind = args[:kind] if args.key?(:kind) @price = args[:price] if args.key?(:price) @region_id = args[:region_id] if args.key?(:region_id) @sale_price = args[:sale_price] if args.key?(:sale_price) @sale_price_effective_date = args[:sale_price_effective_date] if args.key?(:sale_price_effective_date) end |