Show / Hide Table of Contents

Class UrlNotification

UrlNotification is the resource used in all Indexing API calls. It describes one event in the life cycle of a Web Document.

Inheritance
System.Object
UrlNotification
Implements
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.Indexing.v3.Data
Assembly: Google.Apis.Indexing.v3.dll
Syntax
public class UrlNotification : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

NotifyTime

Creation timestamp for this notification. Users should not specify it, the field is ignored at the request time.

Declaration
[JsonProperty("notifyTime")]
public virtual object NotifyTime { get; set; }
Property Value
Type Description
System.Object

Type

The URL life cycle event that Google is being notified about.

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

Url

The object of this notification. The URL must be owned by the publisher of this notification and, in case of URL_UPDATED notifications, it must be crawlable by Google.

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

Implements

IDirectResponseSchema
Back to top