Show / Hide Table of Contents

Class WmxSitemapContent

Information about the various content types in the sitemap.

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

Properties

ETag

The ETag of the item.

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

Indexed

The number of URLs from the sitemap that were indexed (of the content type).

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

Submitted

The number of URLs in the sitemap (of the content type).

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

Type

The specific type of content in this sitemap. For example: web.

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