Class: Google::Apis::ContentV2::AccountStatusDataQualityIssue
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContentV2::AccountStatusDataQualityIssue
 
- 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
- 
  
    
      #country  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Country for which this issue is reported. 
- 
  
    
      #destination  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The destination the issue applies to. 
- 
  
    
      #detail  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A more detailed description of the issue. 
- 
  
    
      #displayed_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Actual value displayed on the landing page. 
- 
  
    
      #example_items  ⇒ Array<Google::Apis::ContentV2::AccountStatusExampleItem> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Example items featuring the issue. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue identifier. 
- 
  
    
      #last_checked  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Last time the account was checked for this issue. 
- 
  
    
      #location  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The attribute name that is relevant for the issue. 
- 
  
    
      #num_items  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Number of items in the account found to have the said issue. 
- 
  
    
      #severity  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Severity of the problem. 
- 
  
    
      #submitted_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Submitted value that causes the issue. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AccountStatusDataQualityIssue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AccountStatusDataQualityIssue. 
- 
  
    
      #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) ⇒ AccountStatusDataQualityIssue
Returns a new instance of AccountStatusDataQualityIssue
| 356 357 358 | # File 'generated/google/apis/content_v2/classes.rb', line 356 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#country ⇒ String
Country for which this issue is reported.
Corresponds to the JSON property country
| 304 305 306 | # File 'generated/google/apis/content_v2/classes.rb', line 304 def country @country end | 
#destination ⇒ String
The destination the issue applies to.
Corresponds to the JSON property destination
| 309 310 311 | # File 'generated/google/apis/content_v2/classes.rb', line 309 def destination @destination end | 
#detail ⇒ String
A more detailed description of the issue.
Corresponds to the JSON property detail
| 314 315 316 | # File 'generated/google/apis/content_v2/classes.rb', line 314 def detail @detail end | 
#displayed_value ⇒ String
Actual value displayed on the landing page.
Corresponds to the JSON property displayedValue
| 319 320 321 | # File 'generated/google/apis/content_v2/classes.rb', line 319 def displayed_value @displayed_value end | 
#example_items ⇒ Array<Google::Apis::ContentV2::AccountStatusExampleItem>
Example items featuring the issue.
Corresponds to the JSON property exampleItems
| 324 325 326 | # File 'generated/google/apis/content_v2/classes.rb', line 324 def example_items @example_items end | 
#id ⇒ String
Issue identifier.
Corresponds to the JSON property id
| 329 330 331 | # File 'generated/google/apis/content_v2/classes.rb', line 329 def id @id end | 
#last_checked ⇒ String
Last time the account was checked for this issue.
Corresponds to the JSON property lastChecked
| 334 335 336 | # File 'generated/google/apis/content_v2/classes.rb', line 334 def last_checked @last_checked end | 
#location ⇒ String
The attribute name that is relevant for the issue.
Corresponds to the JSON property location
| 339 340 341 | # File 'generated/google/apis/content_v2/classes.rb', line 339 def location @location end | 
#num_items ⇒ Fixnum
Number of items in the account found to have the said issue.
Corresponds to the JSON property numItems
| 344 345 346 | # File 'generated/google/apis/content_v2/classes.rb', line 344 def num_items @num_items end | 
#severity ⇒ String
Severity of the problem.
Corresponds to the JSON property severity
| 349 350 351 | # File 'generated/google/apis/content_v2/classes.rb', line 349 def severity @severity end | 
#submitted_value ⇒ String
Submitted value that causes the issue.
Corresponds to the JSON property submittedValue
| 354 355 356 | # File 'generated/google/apis/content_v2/classes.rb', line 354 def submitted_value @submitted_value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 361 362 363 364 365 366 367 368 369 370 371 372 373 | # File 'generated/google/apis/content_v2/classes.rb', line 361 def update!(**args) @country = args[:country] if args.key?(:country) @destination = args[:destination] if args.key?(:destination) @detail = args[:detail] if args.key?(:detail) @displayed_value = args[:displayed_value] if args.key?(:displayed_value) @example_items = args[:example_items] if args.key?(:example_items) @id = args[:id] if args.key?(:id) @last_checked = args[:last_checked] if args.key?(:last_checked) @location = args[:location] if args.key?(:location) @num_items = args[:num_items] if args.key?(:num_items) @severity = args[:severity] if args.key?(:severity) @submitted_value = args[:submitted_value] if args.key?(:submitted_value) end |