Show / Hide Table of Contents

Class PostPerUserInfo

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

Properties

BlogId

ID of the Blog that the post resource belongs to.

Declaration
[JsonProperty("blogId")]
public virtual string BlogId { 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

HasEditAccess

True if the user has Author level access to the post.

Declaration
[JsonProperty("hasEditAccess")]
public virtual bool? HasEditAccess { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Kind

The kind of this entity. Always blogger#postPerUserInfo.

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

PostId

ID of the Post resource.

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

UserId

ID of the User.

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

Implements

IDirectResponseSchema
Back to top