Class: Google::Apis::AdmobV1::ReportWarning

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

Overview

Warnings associated with generation of the report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReportWarning

Returns a new instance of ReportWarning.



1006
1007
1008
# File 'lib/google/apis/admob_v1/classes.rb', line 1006

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

Instance Attribute Details

#descriptionString

Describes the details of the warning message, in English. Corresponds to the JSON property description

Returns:

  • (String)


999
1000
1001
# File 'lib/google/apis/admob_v1/classes.rb', line 999

def description
  @description
end

#typeString

Type of the warning. Corresponds to the JSON property type

Returns:

  • (String)


1004
1005
1006
# File 'lib/google/apis/admob_v1/classes.rb', line 1004

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1011
1012
1013
1014
# File 'lib/google/apis/admob_v1/classes.rb', line 1011

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @type = args[:type] if args.key?(:type)
end