Show / Hide Table of Contents

Class Alert

Inheritance
System.Object
Alert
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AdSense.v1_4.Data
Assembly: Google.Apis.AdSense.v1_4.dll
Syntax
public class Alert : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

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.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

IsDismissible

Whether this alert can be dismissed.

Declaration
[JsonProperty("isDismissible")]
public virtual bool? IsDismissible { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Kind

Kind of resource this is, in this case adsense#alert.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Message

The localized alert message.

Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type Description
System.String

Severity

Severity of this alert. Possible values: INFO, WARNING, SEVERE.

Declaration
[JsonProperty("severity")]
public virtual string Severity { get; set; }
Property Value
Type Description
System.String

Type

Type of this alert. Possible values: SELF_HOLD, MIGRATED_TO_BILLING3, ADDRESS_PIN_VERIFICATION, PHONE_PIN_VERIFICATION, CORPORATE_ENTITY, GRAYLISTED_PUBLISHER, API_HOLD.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top