class Google::Apis::ContentV2::AccountStatusDataQualityIssue
Attributes
Corresponds to the JSON property `country` @return [String]
Corresponds to the JSON property `destination` @return [String]
Corresponds to the JSON property `detail` @return [String]
Corresponds to the JSON property `displayedValue` @return [String]
Corresponds to the JSON property `exampleItems` @return [Array<Google::Apis::ContentV2::AccountStatusExampleItem>]
Corresponds to the JSON property `id` @return [String]
Corresponds to the JSON property `lastChecked` @return [String]
Corresponds to the JSON property `location` @return [String]
Corresponds to the JSON property `numItems` @return [Fixnum]
Acceptable values are: - “`critical`” - “`error`” - “`suggestion`” Corresponds to the JSON property `severity` @return [String]
Corresponds to the JSON property `submittedValue` @return [String]
Public Class Methods
# File lib/google/apis/content_v2/classes.rb, line 489 def initialize(**args) update!(**args) end
Public Instance Methods
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