class Google::Apis::ContentV2::AccountStatusDataQualityIssue
Attributes
Country for which this issue is reported. Corresponds to the JSON property `country` @return [String]
Actual value displayed on the landing page. Corresponds to the JSON property `displayedValue` @return [String]
Example items featuring the issue. Corresponds to the JSON property `exampleItems` @return [Array<Google::Apis::ContentV2::AccountStatusExampleItem>]
Issue identifier. Corresponds to the JSON property `id` @return [String]
Last time the account was checked for this issue. Corresponds to the JSON property `lastChecked` @return [String]
Number of items in the account found to have the said issue. Corresponds to the JSON property `numItems` @return [Fixnum]
Severity of the problem. Corresponds to the JSON property `severity` @return [String]
Submitted value that causes the issue. Corresponds to the JSON property `submittedValue` @return [String]
Public Class Methods
# File generated/google/apis/content_v2/classes.rb, line 684 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/content_v2/classes.rb, line 689 def update!(**args) @country = args[:country] if args.key?(:country) @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) @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