class Google::Apis::ContentV2::AccountStatusDataQualityIssue

Attributes

country[RW]

Country for which this issue is reported. Corresponds to the JSON property `country` @return [String]

displayed_value[RW]

Actual value displayed on the landing page. Corresponds to the JSON property `displayedValue` @return [String]

example_items[RW]

Example items featuring the issue. Corresponds to the JSON property `exampleItems` @return [Array<Google::Apis::ContentV2::AccountStatusExampleItem>]

id[RW]

Issue identifier. Corresponds to the JSON property `id` @return [String]

last_checked[RW]

Last time the account was checked for this issue. Corresponds to the JSON property `lastChecked` @return [String]

num_items[RW]

Number of items in the account found to have the said issue. Corresponds to the JSON property `numItems` @return [Fixnum]

severity[RW]

Severity of the problem. Corresponds to the JSON property `severity` @return [String]

submitted_value[RW]

Submitted value that causes the issue. Corresponds to the JSON property `submittedValue` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/content_v2/classes.rb, line 684
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 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