Show / Hide Table of Contents

Class CommentFeed

Inheritance
System.Object
CommentFeed
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.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class CommentFeed : IDirectResponseSchema

Properties

ETag

ETag of this response for caching purposes.

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

Id

The ID of this collection of comments.

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

Items

The comments in this page of results.

Declaration
[JsonProperty("items")]
public virtual IList<Comment> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Comment>

Kind

Identifies this resource as a collection of comments. Value: "plus#commentFeed".

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

NextLink

Link to the next page of activities.

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

NextPageToken

The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.

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

Title

The title of this collection of comments.

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

Updated

System.DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Updated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

UpdatedRaw

The time at which this collection of comments was last updated. Formatted as an RFC 3339 timestamp.

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

Implements

IDirectResponseSchema
Back to top