Show / Hide Table of Contents

Class WmxSitemap

Contains detailed information about a specific URL submitted as a sitemap.

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

Properties

Contents

The various content types in the sitemap.

Declaration
[JsonProperty("contents")]
public virtual IList<WmxSitemapContent> Contents { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<WmxSitemapContent>

Errors

Number of errors in the sitemap. These are issues with the sitemap itself that need to be fixed before it can be processed correctly.

Declaration
[JsonProperty("errors")]
public virtual long? Errors { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

IsPending

If true, the sitemap has not been processed.

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

IsSitemapsIndex

If true, the sitemap is a collection of sitemaps.

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

LastDownloaded

System.DateTime representation of LastDownloadedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? LastDownloaded { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

LastDownloadedRaw

Date &amp; time in which this sitemap was last downloaded. Date format is in RFC 3339 format (yyyy-mm-dd).

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

LastSubmitted

System.DateTime representation of LastSubmittedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? LastSubmitted { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

LastSubmittedRaw

Date &amp; time in which this sitemap was submitted. Date format is in RFC 3339 format (yyyy-mm-dd).

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

Path

The url of the sitemap.

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

Type

The type of the sitemap. For example: rssFeed.

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

Warnings

Number of warnings for the sitemap. These are generally non-critical issues with URLs in the sitemaps.

Declaration
[JsonProperty("warnings")]
public virtual long? Warnings { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

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