class Google::Apis::ContentV2::AccountStatusAccountLevelIssue
Attributes
Country for which this issue is reported. Corresponds to the JSON property `country` @return [String]
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]
Additional details about the issue. Corresponds to the JSON property `detail` @return [String]
The URL of a web page to help resolving this issue. Corresponds to the JSON property `documentation` @return [String]
Issue identifier. Corresponds to the JSON property `id` @return [String]
Severity of the issue. Acceptable values are: - “`critical`” - “`error`” - “` suggestion`” Corresponds to the JSON property `severity` @return [String]
Short description of the issue. Corresponds to the JSON property `title` @return [String]
Public Class Methods
# File lib/google/apis/content_v2/classes.rb, line 414 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 419 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