Show / Hide Table of Contents

Class Activity.ObjectData

The object of this activity.

Inheritance
System.Object
Activity.ObjectData
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 ObjectData

Properties

Actor

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.

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

Attachments

The media objects attached to this activity.

Declaration
[JsonProperty("attachments")]
public virtual IList<Activity.ObjectData.AttachmentsData> Attachments { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Activity.ObjectData.AttachmentsData>

Content

The HTML-formatted content, which is suitable for display.

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

Id

The ID of the object. When resharing an activity, this is the ID of the activity that is being reshared.

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

ObjectType

The type of the object. Possible values include, but are not limited to, the following values:

  • "note" - Textual content. - "activity" - A Google+ activity.
Declaration
[JsonProperty("objectType")]
public virtual string ObjectType { get; set; }
Property Value
Type Description
System.String

OriginalContent

The content (text) as provided by the author, which is stored without any HTML formatting. When creating or updating an activity, this value must be supplied as plain text in the request.

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

Plusoners

People who +1'd this activity.

Declaration
[JsonProperty("plusoners")]
public virtual Activity.ObjectData.PlusonersData Plusoners { get; set; }
Property Value
Type Description
Activity.ObjectData.PlusonersData

Replies

Comments in reply to this activity.

Declaration
[JsonProperty("replies")]
public virtual Activity.ObjectData.RepliesData Replies { get; set; }
Property Value
Type Description
Activity.ObjectData.RepliesData

Resharers

People who reshared this activity.

Declaration
[JsonProperty("resharers")]
public virtual Activity.ObjectData.ResharersData Resharers { get; set; }
Property Value
Type Description
Activity.ObjectData.ResharersData

Url

The URL that points to the linked resource.

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