Show / Hide Table of Contents

Class Blog.PostsData

The container of posts in this blog.

Inheritance
System.Object
Blog.PostsData
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 PostsData

Properties

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>

SelfLink

The URL of the container for posts in this blog.

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

TotalItems

The count of posts in this blog.

Declaration
[JsonProperty("totalItems")]
public virtual int? TotalItems { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
Back to top