Interface ICommentUpdate
An interface that provides the information necessary for updating the specific comment ID.
Namespace: Unity.Cloud.Annotation
Syntax
public interface ICommentUpdate
Properties
Id
Returns the updated comment ID.
Declaration
Guid Id { get; }
Property Value
| Type | Description |
|---|---|
| Guid | The updated comment ID. |
MarkAsRead
Returns whether the updated comment is marked as read.
Declaration
bool MarkAsRead { get; }
Property Value
| Type | Description |
|---|---|
| Boolean | Whether to mark the updated comment as read. |
Remarks
If true, the updated comment is marked as read. If false, the updated comment isn't marked as read.
Text
Returns the text content of the updated comment.
Declaration
string Text { get; }
Property Value
| Type | Description |
|---|---|
| String | The text content of the updated comment. |