class Google::Apis::ContentV2::AccountStatusDataQualityIssue

Attributes

country[RW]

Corresponds to the JSON property `country` @return [String]

destination[RW]

Corresponds to the JSON property `destination` @return [String]

detail[RW]

Corresponds to the JSON property `detail` @return [String]

displayed_value[RW]

Corresponds to the JSON property `displayedValue` @return [String]

example_items[RW]

Corresponds to the JSON property `exampleItems` @return [Array<Google::Apis::ContentV2::AccountStatusExampleItem>]

id[RW]

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

last_checked[RW]

Corresponds to the JSON property `lastChecked` @return [String]

location[RW]

Corresponds to the JSON property `location` @return [String]

num_items[RW]

Corresponds to the JSON property `numItems` @return [Fixnum]

severity[RW]

Acceptable values are: - “`critical`” - “`error`” - “`suggestion`” Corresponds to the JSON property `severity` @return [String]

submitted_value[RW]

Corresponds to the JSON property `submittedValue` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 489
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/content_v2/classes.rb, line 494
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