Show / Hide Table of Contents

Class PostList

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

Properties

ETag

Etag of the response.

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

Items

The list of Posts for this Blog.

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

Kind

The kind of this entity. Always blogger#postList.

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

NextPageToken

Pagination token to fetch the next page, if one exists.

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

PrevPageToken

Pagination token to fetch the previous page, if one exists.

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

Implements

IDirectResponseSchema
Back to top