Interface IReaction
Represents a reaction to a specific item, such as an annotation or comment.
Namespace: Unity.Cloud.Collaboration.Models.Reactions
Assembly: Unity.Cloud.Collaboration.dll
Syntax
public interface IReaction
Properties
Code
The single-character Unicode-encoded emoji (UTF-16 surrogate pairs).
Declaration
string Code { get; }
Property Value
| Type | Description |
|---|---|
| string |
Count
Number of users who have reacted.
Declaration
int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
UserIds
Representing the userIds who have reacted with the specified emoji, max 10 users will be return including the authenticated user who has reacted.
Declaration
IReadOnlyList<string> UserIds { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyList<string> |