class Google::Apis::ContentV2::AccountStatusExampleItem
An example of an item that has poor data quality. An item value on the landing page differs from what is submitted, or conflicts with a policy.
Attributes
item_id[RW]
Unique item ID as specified in the uploaded product data. Corresponds to the JSON property `itemId` @return [String]
link[RW]
Landing page of the item. Corresponds to the JSON property `link` @return [String]
submitted_value[RW]
The item value that was submitted. Corresponds to the JSON property `submittedValue` @return [String]
title[RW]
Title of the item. Corresponds to the JSON property `title` @return [String]
value_on_landing_page[RW]
The actual value on the landing page. Corresponds to the JSON property `valueOnLandingPage` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/content_v2/classes.rb, line 731 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/content_v2/classes.rb, line 736 def update!(**args) @item_id = args[:item_id] if args.key?(:item_id) @link = args[:link] if args.key?(:link) @submitted_value = args[:submitted_value] if args.key?(:submitted_value) @title = args[:title] if args.key?(:title) @value_on_landing_page = args[:value_on_landing_page] if args.key?(:value_on_landing_page) end