Interface IUGCContentVersionsApi
Represents a collection of functions to interact with the API endpoints
Namespace: Unity.Services.Apis.UGC
Assembly: solution.dll
Syntax
public interface IUGCContentVersionsApi : IApiAccessor
Methods
SearchContentVersions(string, string, string, int?, int?, List<string>, bool?, CancellationToken)
Search all versions of a content item in a given project and environment
Declaration
ApiOperation<ContentVersionDTOPagedResult> SearchContentVersions(string projectId, string environmentId, string contentId, int? offset = null, int? limit = null, List<string> sortBys = null, bool? includeTotal = null, CancellationToken cancellationToken = default)
Parameters
| Type | Name | Description |
|---|---|---|
| string | projectId | |
| string | environmentId | |
| string | contentId | |
| int? | offset | (optional) |
| int? | limit | (optional) |
| List<string> | sortBys | (optional) |
| bool? | includeTotal | (optional) |
| CancellationToken | cancellationToken | Cancellation Token to cancel the request. |
Returns
| Type | Description |
|---|---|
| ApiOperation<ContentVersionDTOPagedResult> | The operation |