Show / Hide Table of Contents

Class Post

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

Properties

Author

The author of this Post.

Declaration
[JsonProperty("author")]
public virtual Post.AuthorData Author { get; set; }
Property Value
Type Description
Post.AuthorData

Blog

Data about the blog containing this Post.

Declaration
[JsonProperty("blog")]
public virtual Post.BlogData Blog { get; set; }
Property Value
Type Description
Post.BlogData

Content

The content of the Post. May contain HTML markup.

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

CustomMetaData

The JSON meta-data for the Post.

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

ETag

Etag of the resource.

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

Id

The identifier of this Post.

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

Images

Display image for the Post.

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

Kind

The kind of this entity. Always blogger#post.

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

Labels

The list of labels this Post was tagged with.

Declaration
[JsonProperty("labels")]
public virtual IList<string> Labels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Location

The location for geotagged posts.

Declaration
[JsonProperty("location")]
public virtual Post.LocationData Location { get; set; }
Property Value
Type Description
Post.LocationData

Published

RFC 3339 date-time when this Post was published.

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

ReaderComments

Comment control and display setting for readers of this post.

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

Replies

The container of comments on this Post.

Declaration
[JsonProperty("replies")]
public virtual Post.RepliesData Replies { get; set; }
Property Value
Type Description
Post.RepliesData

SelfLink

The API REST URL to fetch this resource from.

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

Status

Status of the post. Only set for admin-level requests.

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

Title

The title of the Post.

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

TitleLink

The title link URL, similar to atom's related link.

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

Updated

RFC 3339 date-time when this Post was last updated.

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

Url

The URL where this Post is displayed.

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

Implements

IDirectResponseSchema
Back to top