Struct ReadRepliesResult
Represents the result of a read replies request, including the list of replies and pagination information.
Inherited Members
Namespace: Unity.Cloud.Collaboration.Models.Annotations
Assembly: Unity.Cloud.Collaboration.dll
Syntax
public readonly struct ReadRepliesResult
Constructors
ReadRepliesResult(IReadOnlyList<IAnnotation>, string)
Initializes a new instance of the ReadRepliesResult struct.
Declaration
public ReadRepliesResult(IReadOnlyList<IAnnotation> annotations = null, string next = null)
Parameters
| Type | Name | Description |
|---|---|---|
| IReadOnlyList<IAnnotation> | annotations | The list of replies returned for the requested annotation. |
| string | next | The pagination token for the next request. |
Fields
Annotations
List of replies returned for requested annotation
Declaration
public readonly IReadOnlyList<IAnnotation> Annotations
Field Value
| Type | Description |
|---|---|
| IReadOnlyList<IAnnotation> |
Next
Pagination token for next request
Declaration
public readonly string Next
Field Value
| Type | Description |
|---|---|
| string |