Show / Hide Table of Contents

Class User

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

Properties

About

Profile summary information.

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

Blogs

The container of blogs for this user.

Declaration
[JsonProperty("blogs")]
public virtual User.BlogsData Blogs { get; set; }
Property Value
Type Description
User.BlogsData

Created

The timestamp of when this profile was created, in seconds since epoch.

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

DisplayName

The display name.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { 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 User.

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

Kind

The kind of this entity. Always blogger#user.

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

Locale

This user's locale

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

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

Url

The user's profile page.

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

Implements

IDirectResponseSchema
Back to top