Show / Hide Table of Contents

Class Activity.ActorData

The person who performed this activity.

Inheritance
System.Object
Activity.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.ActorData.ClientSpecificActorInfoData ClientSpecificActorInfo { get; set; }
Property Value
Type Description
Activity.ActorData.ClientSpecificActorInfoData

DisplayName

The name of the actor, suitable for display.

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

Id

The ID of the actor's Person resource.

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

Image

The image representation of the actor.

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

Name

An object representation of the individual components of name.

Declaration
[JsonProperty("name")]
public virtual Activity.ActorData.NameData Name { get; set; }
Property Value
Type Description
Activity.ActorData.NameData

Url

The link to the 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.ActorData.VerificationData Verification { get; set; }
Property Value
Type Description
Activity.ActorData.VerificationData
Back to top