Show / Hide Table of Contents

Class ConsolidationStrategy

How the individual activities are consolidated. A set of activities may be consolidated into one combined activity if they are related in some way, such as one actor performing the same action on multiple targets, or multiple actors performing the same action on a single target. The strategy defines the rules for which activities are related.

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

Properties

ETag

The ETag of the item.

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

Legacy

The individual activities are consolidated using the legacy strategy.

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

None

The individual activities are not consolidated.

Declaration
[JsonProperty("none")]
public virtual NoConsolidation None { get; set; }
Property Value
Type Description
NoConsolidation

Implements

IDirectResponseSchema
Back to top