Class: Google::Apis::ContentV2::AccountStatusExampleItem
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::AccountStatusExampleItem
 
- Defined in:
- generated/google/apis/content_v2/classes.rb,
 generated/google/apis/content_v2/representations.rb,
 generated/google/apis/content_v2/representations.rb
Overview
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.
Instance Attribute Summary collapse
- 
  
    
      #item_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique item ID as specified in the uploaded product data. 
- 
  
    
      #link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Landing page of the item. 
- 
  
    
      #submitted_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The item value that was submitted. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Title of the item. 
- 
  
    
      #value_on_landing_page  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The actual value on the landing page. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountStatusExampleItem 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AccountStatusExampleItem. 
- 
  
    
      #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) ⇒ AccountStatusExampleItem
Returns a new instance of AccountStatusExampleItem
| 406 407 408 | # File 'generated/google/apis/content_v2/classes.rb', line 406 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#item_id ⇒ String
Unique item ID as specified in the uploaded product data.
Corresponds to the JSON property itemId
| 384 385 386 | # File 'generated/google/apis/content_v2/classes.rb', line 384 def item_id @item_id end | 
#link ⇒ String
Landing page of the item.
Corresponds to the JSON property link
| 389 390 391 | # File 'generated/google/apis/content_v2/classes.rb', line 389 def link @link end | 
#submitted_value ⇒ String
The item value that was submitted.
Corresponds to the JSON property submittedValue
| 394 395 396 | # File 'generated/google/apis/content_v2/classes.rb', line 394 def submitted_value @submitted_value end | 
#title ⇒ String
Title of the item.
Corresponds to the JSON property title
| 399 400 401 | # File 'generated/google/apis/content_v2/classes.rb', line 399 def title @title end | 
#value_on_landing_page ⇒ String
The actual value on the landing page.
Corresponds to the JSON property valueOnLandingPage
| 404 405 406 | # File 'generated/google/apis/content_v2/classes.rb', line 404 def value_on_landing_page @value_on_landing_page end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 411 412 413 414 415 416 417 | # File 'generated/google/apis/content_v2/classes.rb', line 411 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 |