Show / Hide Table of Contents

Class Activity.ObjectData.ActorData

If this activity's object is itself another activity, such as when a person reshares an activity, this property specifies the original activity's actor.

Inheritance
System.Object
Activity.ObjectData.ActorData
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.Plus.v1.Data
Assembly: Google.Apis.Plus.v1.dll
Syntax
public class ActorData

Properties

ClientSpecificActorInfo

Actor info specific to particular clients.

Declaration
[JsonProperty("clientSpecificActorInfo")]
public virtual Activity.ObjectData.ActorData.ClientSpecificActorInfoData ClientSpecificActorInfo { get; set; }
Property Value
Type Description
Activity.ObjectData.ActorData.ClientSpecificActorInfoData

DisplayName

The original actor's name, which is suitable for display.

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

Id

ID of the original actor.

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

Image

The image representation of the original actor.

Declaration
[JsonProperty("image")]
public virtual Activity.ObjectData.ActorData.ImageData Image { get; set; }
Property Value
Type Description
Activity.ObjectData.ActorData.ImageData

Url

A link to the original actor's Google profile.

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

Verification

Verification status of actor.

Declaration
[JsonProperty("verification")]
public virtual Activity.ObjectData.ActorData.VerificationData Verification { get; set; }
Property Value
Type Description
Activity.ObjectData.ActorData.VerificationData
Back to top