Show / Hide Table of Contents

Class Comment.ObjectData

The object of this comment.

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

Content

The HTML-formatted content, suitable for display.

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

ObjectType

The object type of this comment. Possible values are: - "comment" - A comment in reply to an 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, stored without any HTML formatting. When creating or updating a comment, 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
Back to top