Show / Hide Table of Contents

Class Action

Information about the action.

Inheritance
System.Object
Action
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.DriveActivity.v2.Data
Assembly: Google.Apis.DriveActivity.v2.dll
Syntax
public class Action : IDirectResponseSchema

Properties

Actor

The actor responsible for this action (or empty if all actors are responsible).

Declaration
[JsonProperty("actor")]
public virtual Actor Actor { get; set; }
Property Value
Type Description
Actor

Detail

The type and detailed information about the action.

Declaration
[JsonProperty("detail")]
public virtual ActionDetail Detail { get; set; }
Property Value
Type Description
ActionDetail

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Target

The target this action affects (or empty if affecting all targets). This represents the state of the target immediately after this action occurred.

Declaration
[JsonProperty("target")]
public virtual Target Target { get; set; }
Property Value
Type Description
Target

TimeRange

The action occurred over this time range.

Declaration
[JsonProperty("timeRange")]
public virtual TimeRange TimeRange { get; set; }
Property Value
Type Description
TimeRange

Timestamp

The action occurred at this specific time.

Declaration
[JsonProperty("timestamp")]
public virtual object Timestamp { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
Back to top