Show / Hide Table of Contents

Class Reply

A reply to a comment on a file. Some resource methods (such as replies.update) require a replyId. Use the replies.list method to retrieve the ID for a reply.

Inheritance
object
Reply
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class Reply : IDirectResponseSchema

Properties

Action

The action the reply performed to the parent comment. Valid values are: * resolve * reopen

Declaration
[JsonProperty("action")]
public virtual string Action { get; set; }
Property Value
Type Description
string

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 of the reply. This field is used for setting the content, while htmlContent should be displayed. This is required on creates if no action is specified.

Declaration
[JsonProperty("content")]
public virtual string Content { get; set; }
Property Value
Type Description
string

CreatedTime

DateTime representation of CreatedTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreatedTimeDateTimeOffset instead.")]
public virtual DateTime? CreatedTime { get; set; }
Property Value
Type Description
DateTime?

CreatedTimeDateTimeOffset

DateTimeOffset representation of CreatedTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreatedTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

CreatedTimeRaw

The time at which the reply was created (RFC 3339 date-time).

Declaration
[JsonProperty("createdTime")]
public virtual string CreatedTimeRaw { get; set; }
Property Value
Type Description
string

Deleted

Output only. Whether the reply has been deleted. A deleted reply has no content.

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. The content of the reply with HTML formatting.

Declaration
[JsonProperty("htmlContent")]
public virtual string HtmlContent { get; set; }
Property Value
Type Description
string

Id

Output only. The ID of the reply.

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

Kind

Output only. Identifies what kind of resource this is. Value: the fixed string "drive#reply".

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

ModifiedTime

DateTime representation of ModifiedTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use ModifiedTimeDateTimeOffset instead.")]
public virtual DateTime? ModifiedTime { get; set; }
Property Value
Type Description
DateTime?

ModifiedTimeDateTimeOffset

DateTimeOffset representation of ModifiedTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? ModifiedTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

ModifiedTimeRaw

The last time the reply was modified (RFC 3339 date-time).

Declaration
[JsonProperty("modifiedTime")]
public virtual string ModifiedTimeRaw { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX