Show / Hide Table of Contents

Class Interaction

Represents an interaction between a user and an item.

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

Properties

ETag

The ETag of the item.

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

InteractionTime

The time when the user acted on the item. If multiple actions of the same type exist for a single user, only the most recent action is recorded.

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

Principal

The user that acted on the item.

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

Type

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

Implements

IDirectResponseSchema
Back to top