Class CommentReply
A comment on a file in Google Drive. Some resource methods (such as replies.update
) require a replyId
. Use
the replies.list
method to retrieve the ID for a reply.
Implements
Inherited Members
Namespace: Google.Apis.Drive.v2.Data
Assembly: Google.Apis.Drive.v2.dll
Syntax
public class CommentReply : IDirectResponseSchema
Properties
Author
Output only. The author of the reply. The author's email address and permission ID will not be populated.
Declaration
[JsonProperty("author")]
public virtual User Author { get; set; }
Property Value
Type | Description |
---|---|
User |
Content
The plain text content used to create this reply. This is not HTML safe and should only be used as a starting point to make edits to a reply's content. This field is required on inserts if no verb is specified (resolve/reopen).
Declaration
[JsonProperty("content")]
public virtual string Content { get; set; }
Property Value
Type | Description |
---|---|
string |
CreatedDate
DateTime representation of CreatedDateRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreatedDateDateTimeOffset instead.")]
public virtual DateTime? CreatedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime? |
CreatedDateDateTimeOffset
DateTimeOffset representation of CreatedDateRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreatedDateDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
CreatedDateRaw
The date when this reply was first created.
Declaration
[JsonProperty("createdDate")]
public virtual string CreatedDateRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
Deleted
Output only. Whether this reply has been deleted. If a reply has been deleted the content will be cleared and this will only represent a reply that once existed.
Declaration
[JsonProperty("deleted")]
public virtual bool? Deleted { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HtmlContent
Output only. HTML formatted content for this reply.
Declaration
[JsonProperty("htmlContent")]
public virtual string HtmlContent { get; set; }
Property Value
Type | Description |
---|---|
string |
Kind
Output only. This is always drive#commentReply
.
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
ModifiedDate
DateTime representation of ModifiedDateRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use ModifiedDateDateTimeOffset instead.")]
public virtual DateTime? ModifiedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime? |
ModifiedDateDateTimeOffset
DateTimeOffset representation of ModifiedDateRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? ModifiedDateDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
ModifiedDateRaw
The date when this reply was last modified.
Declaration
[JsonProperty("modifiedDate")]
public virtual string ModifiedDateRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
ReplyId
Output only. The ID of the reply.
Declaration
[JsonProperty("replyId")]
public virtual string ReplyId { get; set; }
Property Value
Type | Description |
---|---|
string |
Verb
The action this reply performed to the parent comment. When creating a new reply this is the action to be
perform to the parent comment. Possible values are: * resolve
- To resolve a comment. * reopen
- To
reopen (un-resolve) a comment.
Declaration
[JsonProperty("verb")]
public virtual string Verb { get; set; }
Property Value
Type | Description |
---|---|
string |