Class TagDTO
Response for getting tag info
Inherited Members
Namespace: Unity.Services.Apis.UGC
Assembly: solution.dll
Syntax
[Preserve]
public class TagDTO
Constructors
TagDTO(string, string, string, string)
Initializes a new instance of the Tag
Declaration
[Preserve]
public TagDTO(string id = null, string name = null, string projectId = null, string environmentId = null)
Parameters
Type | Name | Description |
---|---|---|
string | id | Tag item guid. |
string | name | Display name. |
string | projectId | The project that the tag belongs to. If "global" then tag is un-editable/un-deletable and is shared among all projects. (required). |
string | environmentId | The environment that the tag belongs to.. |
Properties
EnvironmentId
The environment that the tag belongs to.
Declaration
[Preserve]
public string EnvironmentId { get; set; }
Property Value
Type | Description |
---|---|
string | The environment that the tag belongs to. |
Id
Tag item guid
Declaration
[Preserve]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | Tag item guid |
Name
Display name
Declaration
[Preserve]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | Display name |
ProjectId
The project that the tag belongs to. If "global" then tag is un-editable/un-deletable and is shared among all projects.
Declaration
[Preserve]
public string ProjectId { get; set; }
Property Value
Type | Description |
---|---|
string | The project that the tag belongs to. If "global" then tag is un-editable/un-deletable and is shared among all projects. |