class Google::Apis::ContentV2_1::AccountStatusAccountLevelIssue

Attributes

country[RW]

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

destination[RW]

The destination the issue applies to. If this field is empty then the issue applies to all available destinations. Corresponds to the JSON property `destination` @return [String]

detail[RW]

Additional details about the issue. Corresponds to the JSON property `detail` @return [String]

documentation[RW]

The URL of a web page to help resolving this issue. Corresponds to the JSON property `documentation` @return [String]

id[RW]

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

severity[RW]

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

title[RW]

Short description of the issue. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/content_v2_1/classes.rb, line 556
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_1/classes.rb, line 561
def update!(**args)
  @country = args[:country] if args.key?(:country)
  @destination = args[:destination] if args.key?(:destination)
  @detail = args[:detail] if args.key?(:detail)
  @documentation = args[:documentation] if args.key?(:documentation)
  @id = args[:id] if args.key?(:id)
  @severity = args[:severity] if args.key?(:severity)
  @title = args[:title] if args.key?(:title)
end