Class: Google::Apis::ContentV2::ProductStatus
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::ProductStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/content_v2/classes.rb,
lib/google/apis/content_v2/representations.rb,
lib/google/apis/content_v2/representations.rb
Overview
The status of a product, i.e., information about a product computed asynchronously.
Instance Attribute Summary collapse
-
#creation_date ⇒ String
Date on which the item has been created, in ISO 8601 format.
-
#data_quality_issues ⇒ Array<Google::Apis::ContentV2::ProductStatusDataQualityIssue>
DEPRECATED - never populated Corresponds to the JSON property
dataQualityIssues
. -
#destination_statuses ⇒ Array<Google::Apis::ContentV2::ProductStatusDestinationStatus>
The intended destinations for the product.
-
#google_expiration_date ⇒ String
Date on which the item expires in Google Shopping, in ISO 8601 format.
-
#item_level_issues ⇒ Array<Google::Apis::ContentV2::ProductStatusItemLevelIssue>
A list of all issues associated with the product.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#last_update_date ⇒ String
Date on which the item has been last updated, in ISO 8601 format.
-
#link ⇒ String
The link to the product.
-
#product ⇒ Google::Apis::ContentV2::Product
Required product attributes are primarily defined by the products data specification.
-
#product_id ⇒ String
The ID of the product for which status is reported.
-
#title ⇒ String
The title of the product.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProductStatus
constructor
A new instance of ProductStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProductStatus
Returns a new instance of ProductStatus.
9275 9276 9277 |
# File 'lib/google/apis/content_v2/classes.rb', line 9275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_date ⇒ String
Date on which the item has been created, in ISO 8601 format.
Corresponds to the JSON property creationDate
9219 9220 9221 |
# File 'lib/google/apis/content_v2/classes.rb', line 9219 def creation_date @creation_date end |
#data_quality_issues ⇒ Array<Google::Apis::ContentV2::ProductStatusDataQualityIssue>
DEPRECATED - never populated
Corresponds to the JSON property dataQualityIssues
9224 9225 9226 |
# File 'lib/google/apis/content_v2/classes.rb', line 9224 def data_quality_issues @data_quality_issues end |
#destination_statuses ⇒ Array<Google::Apis::ContentV2::ProductStatusDestinationStatus>
The intended destinations for the product.
Corresponds to the JSON property destinationStatuses
9229 9230 9231 |
# File 'lib/google/apis/content_v2/classes.rb', line 9229 def destination_statuses @destination_statuses end |
#google_expiration_date ⇒ String
Date on which the item expires in Google Shopping, in ISO 8601 format.
Corresponds to the JSON property googleExpirationDate
9234 9235 9236 |
# File 'lib/google/apis/content_v2/classes.rb', line 9234 def google_expiration_date @google_expiration_date end |
#item_level_issues ⇒ Array<Google::Apis::ContentV2::ProductStatusItemLevelIssue>
A list of all issues associated with the product.
Corresponds to the JSON property itemLevelIssues
9239 9240 9241 |
# File 'lib/google/apis/content_v2/classes.rb', line 9239 def item_level_issues @item_level_issues end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "content#
productStatus
"
Corresponds to the JSON property kind
9245 9246 9247 |
# File 'lib/google/apis/content_v2/classes.rb', line 9245 def kind @kind end |
#last_update_date ⇒ String
Date on which the item has been last updated, in ISO 8601 format.
Corresponds to the JSON property lastUpdateDate
9250 9251 9252 |
# File 'lib/google/apis/content_v2/classes.rb', line 9250 def last_update_date @last_update_date end |
#link ⇒ String
The link to the product.
Corresponds to the JSON property link
9255 9256 9257 |
# File 'lib/google/apis/content_v2/classes.rb', line 9255 def link @link end |
#product ⇒ Google::Apis::ContentV2::Product
Required product attributes are primarily defined by the products data
specification. See the Products Data Specification Help Center article for
information. Product data. After inserting, updating, or deleting a product,
it may take several minutes before changes take effect.
Corresponds to the JSON property product
9263 9264 9265 |
# File 'lib/google/apis/content_v2/classes.rb', line 9263 def product @product end |
#product_id ⇒ String
The ID of the product for which status is reported.
Corresponds to the JSON property productId
9268 9269 9270 |
# File 'lib/google/apis/content_v2/classes.rb', line 9268 def product_id @product_id end |
#title ⇒ String
The title of the product.
Corresponds to the JSON property title
9273 9274 9275 |
# File 'lib/google/apis/content_v2/classes.rb', line 9273 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 |
# File 'lib/google/apis/content_v2/classes.rb', line 9280 def update!(**args) @creation_date = args[:creation_date] if args.key?(:creation_date) @data_quality_issues = args[:data_quality_issues] if args.key?(:data_quality_issues) @destination_statuses = args[:destination_statuses] if args.key?(:destination_statuses) @google_expiration_date = args[:google_expiration_date] if args.key?(:google_expiration_date) @item_level_issues = args[:item_level_issues] if args.key?(:item_level_issues) @kind = args[:kind] if args.key?(:kind) @last_update_date = args[:last_update_date] if args.key?(:last_update_date) @link = args[:link] if args.key?(:link) @product = args[:product] if args.key?(:product) @product_id = args[:product_id] if args.key?(:product_id) @title = args[:title] if args.key?(:title) end |