Interface IUGCTagApi
Represents a collection of functions to interact with the API endpoints
Namespace: Unity.Services.Apis.UGC
Assembly: solution.dll
Syntax
public interface IUGCTagApi : IApiAccessor
Methods
GetTags(string, string, CancellationToken)
Get all tags
Declaration
ApiOperation<List<TagDTO>> GetTags(string projectId, string environmentId, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
string | projectId | |
string | environmentId | |
Cancellation |
cancellationToken | Cancellation Token to cancel the request. |
Returns
Type | Description |
---|---|
Api |
The operation |
GetTagsDefaultEnv(string, CancellationToken)
Get all tags
Declaration
[Obsolete]
ApiOperation<List<TagDTO>> GetTagsDefaultEnv(string projectId, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
string | projectId | |
Cancellation |
cancellationToken | Cancellation Token to cancel the request. |
Returns
Type | Description |
---|---|
Api |
The operation |