Show / Hide Table of Contents

Class Comment.ActorData

The person who posted this comment.

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

DisplayName

The name of this 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.

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

Image

The image representation of this actor.

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

Url

A link to the Person resource for this actor.

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