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