Show / Hide Table of Contents

Class UrlNotificationMetadata

Summary of the most recent Indexing API notifications successfully received, for a given URL.

Inheritance
System.Object
UrlNotificationMetadata
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 UrlNotificationMetadata : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

LatestRemove

Latest notification received with type URL_REMOVED.

Declaration
[JsonProperty("latestRemove")]
public virtual UrlNotification LatestRemove { get; set; }
Property Value
Type Description
UrlNotification

LatestUpdate

Latest notification received with type URL_UPDATED.

Declaration
[JsonProperty("latestUpdate")]
public virtual UrlNotification LatestUpdate { get; set; }
Property Value
Type Description
UrlNotification

Url

URL to which this metadata refers.

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

Implements

IDirectResponseSchema
Back to top