Class: Google::Apis::ContentV2::AccountStatusAccountLevelIssue
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::AccountStatusAccountLevelIssue
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#country ⇒ String
Country for which this issue is reported.
-
#destination ⇒ String
The destination the issue applies to.
-
#detail ⇒ String
Additional details about the issue.
-
#documentation ⇒ String
The URL of a web page to help resolving this issue.
-
#id ⇒ String
Issue identifier.
-
#severity ⇒ String
Severity of the issue.
-
#title ⇒ String
Short description of the issue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountStatusAccountLevelIssue
constructor
A new instance of AccountStatusAccountLevelIssue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountStatusAccountLevelIssue
Returns a new instance of AccountStatusAccountLevelIssue
409 410 411 |
# File 'generated/google/apis/content_v2/classes.rb', line 409 def initialize(**args) update!(**args) end |
Instance Attribute Details
#country ⇒ String
Country for which this issue is reported.
Corresponds to the JSON property country
377 378 379 |
# File 'generated/google/apis/content_v2/classes.rb', line 377 def country @country end |
#destination ⇒ String
The destination the issue applies to.
Corresponds to the JSON property destination
382 383 384 |
# File 'generated/google/apis/content_v2/classes.rb', line 382 def destination @destination end |
#detail ⇒ String
Additional details about the issue.
Corresponds to the JSON property detail
387 388 389 |
# File 'generated/google/apis/content_v2/classes.rb', line 387 def detail @detail end |
#documentation ⇒ String
The URL of a web page to help resolving this issue.
Corresponds to the JSON property documentation
392 393 394 |
# File 'generated/google/apis/content_v2/classes.rb', line 392 def documentation @documentation end |
#id ⇒ String
Issue identifier.
Corresponds to the JSON property id
397 398 399 |
# File 'generated/google/apis/content_v2/classes.rb', line 397 def id @id end |
#severity ⇒ String
Severity of the issue.
Corresponds to the JSON property severity
402 403 404 |
# File 'generated/google/apis/content_v2/classes.rb', line 402 def severity @severity end |
#title ⇒ String
Short description of the issue.
Corresponds to the JSON property title
407 408 409 |
# File 'generated/google/apis/content_v2/classes.rb', line 407 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
414 415 416 417 418 419 420 421 422 |
# File 'generated/google/apis/content_v2/classes.rb', line 414 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 |