Class: Google::Apis::ContentV2_1::AccountStatusAccountLevelIssue

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/content_v2_1/classes.rb,
lib/google/apis/content_v2_1/representations.rb,
lib/google/apis/content_v2_1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountStatusAccountLevelIssue

Returns a new instance of AccountStatusAccountLevelIssue.



509
510
511
# File 'lib/google/apis/content_v2_1/classes.rb', line 509

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#countryString

Country for which this issue is reported. Corresponds to the JSON property country

Returns:

  • (String)


475
476
477
# File 'lib/google/apis/content_v2_1/classes.rb', line 475

def country
  @country
end

#destinationString

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

Returns:

  • (String)


481
482
483
# File 'lib/google/apis/content_v2_1/classes.rb', line 481

def destination
  @destination
end

#detailString

Additional details about the issue. Corresponds to the JSON property detail

Returns:

  • (String)


486
487
488
# File 'lib/google/apis/content_v2_1/classes.rb', line 486

def detail
  @detail
end

#documentationString

The URL of a web page to help resolving this issue. Corresponds to the JSON property documentation

Returns:

  • (String)


491
492
493
# File 'lib/google/apis/content_v2_1/classes.rb', line 491

def documentation
  @documentation
end

#idString

Issue identifier. Corresponds to the JSON property id

Returns:

  • (String)


496
497
498
# File 'lib/google/apis/content_v2_1/classes.rb', line 496

def id
  @id
end

#severityString

Severity of the issue. Acceptable values are: - "critical" - "error" - " suggestion" Corresponds to the JSON property severity

Returns:

  • (String)


502
503
504
# File 'lib/google/apis/content_v2_1/classes.rb', line 502

def severity
  @severity
end

#titleString

Short description of the issue. Corresponds to the JSON property title

Returns:

  • (String)


507
508
509
# File 'lib/google/apis/content_v2_1/classes.rb', line 507

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



514
515
516
517
518
519
520
521
522
# File 'lib/google/apis/content_v2_1/classes.rb', line 514

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