Class: Google::Apis::ContentV2::AccountStatusAccountLevelIssue

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AccountStatusAccountLevelIssue

Returns a new instance of AccountStatusAccountLevelIssue.



414
415
416
# File 'generated/google/apis/content_v2/classes.rb', line 414

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)


380
381
382
# File 'generated/google/apis/content_v2/classes.rb', line 380

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)


386
387
388
# File 'generated/google/apis/content_v2/classes.rb', line 386

def destination
  @destination
end

#detailString

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

Returns:

  • (String)


391
392
393
# File 'generated/google/apis/content_v2/classes.rb', line 391

def detail
  @detail
end

#documentationString

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

Returns:

  • (String)


396
397
398
# File 'generated/google/apis/content_v2/classes.rb', line 396

def documentation
  @documentation
end

#idString

Issue identifier. Corresponds to the JSON property id

Returns:

  • (String)


401
402
403
# File 'generated/google/apis/content_v2/classes.rb', line 401

def id
  @id
end

#severityString

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

Returns:

  • (String)


407
408
409
# File 'generated/google/apis/content_v2/classes.rb', line 407

def severity
  @severity
end

#titleString

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

Returns:

  • (String)


412
413
414
# File 'generated/google/apis/content_v2/classes.rb', line 412

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



419
420
421
422
423
424
425
426
427
# File 'generated/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