class Google::Apis::AdsenseV1_4::Alert
Attributes
Unique identifier of this alert. This should be considered an opaque identifier; it is not safe to rely on it being in any particular format. Corresponds to the JSON property `id` @return [String]
Whether this alert can be dismissed. Corresponds to the JSON property `isDismissible` @return [Boolean]
Whether this alert can be dismissed. Corresponds to the JSON property `isDismissible` @return [Boolean]
Kind of resource this is, in this case adsense#alert. Corresponds to the JSON property `kind` @return [String]
The localized alert message. Corresponds to the JSON property `message` @return [String]
Severity of this alert. Possible values: INFO, WARNING, SEVERE. Corresponds to the JSON property `severity` @return [String]
Type of this alert. Possible values: SELF_HOLD, MIGRATED_TO_BILLING3, ADDRESS_PIN_VERIFICATION, PHONE_PIN_VERIFICATION, CORPORATE_ENTITY, GRAYLISTED_PUBLISHER, API_HOLD. Corresponds to the JSON property `type` @return [String]
Public Class Methods
# File lib/google/apis/adsense_v1_4/classes.rb, line 751 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/adsense_v1_4/classes.rb, line 756 def update!(**args) @id = args[:id] if args.key?(:id) @is_dismissible = args[:is_dismissible] if args.key?(:is_dismissible) @kind = args[:kind] if args.key?(:kind) @message = args[:message] if args.key?(:message) @severity = args[:severity] if args.key?(:severity) @type = args[:type] if args.key?(:type) end