Show / Hide Table of Contents

Class Blog

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

Properties

CustomMetaData

The JSON custom meta-data for the Blog.

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

Description

The description of this blog. This is displayed underneath the title.

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

ETag

The ETag of the item.

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

Id

The identifier for this resource.

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

Kind

The kind of this entry. Always blogger#blog.

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

Locale

The locale this Blog is set to.

Declaration
[JsonProperty("locale")]
public virtual Blog.LocaleData Locale { get; set; }
Property Value
Type Description
Blog.LocaleData

Name

The name of this blog. This is displayed as the title.

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

Pages

The container of pages in this blog.

Declaration
[JsonProperty("pages")]
public virtual Blog.PagesData Pages { get; set; }
Property Value
Type Description
Blog.PagesData

Posts

The container of posts in this blog.

Declaration
[JsonProperty("posts")]
public virtual Blog.PostsData Posts { get; set; }
Property Value
Type Description
Blog.PostsData

Published

RFC 3339 date-time when this blog was published.

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

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

The status of the blog.

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

Updated

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

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

Url

The URL where this blog is published.

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

Implements

IDirectResponseSchema
Back to top