Show / Hide Table of Contents

Class Page.AuthorData

The author of this Page.

Inheritance
System.Object
Page.AuthorData
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 AuthorData

Properties

DisplayName

The display name.

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

Id

The identifier of the creator.

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

Image

The creator's avatar.

Declaration
[JsonProperty("image")]
public virtual Page.AuthorData.ImageData Image { get; set; }
Property Value
Type Description
Page.AuthorData.ImageData

Url

The URL of the creator's Profile page.

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