Class CreateRepresentationArgs
Support class to make a representation request with IUgcService.CreateRepresentationAsync Contains all the parameters of the request
Inherited Members
Namespace: Unity.Services.Ugc.Bridge
Assembly: Unity.Services.Ugc.Bridge.Editor.dll
Syntax
public class CreateRepresentationArgs
Constructors
CreateRepresentationArgs(string, List<string>)
Construct a new CreateRepresentationArgs object.
Declaration
public CreateRepresentationArgs(string contentId, List<string> tags)
Parameters
Type | Name | Description |
---|---|---|
string | contentId | The id of the content to create representation for. |
List<string> | tags | The list of tags for the representation |
Properties
ContentId
The id the content
Declaration
public string ContentId { get; set; }
Property Value
Type | Description |
---|---|
string |
Metadata
Metadata of the representation
Declaration
public string Metadata { get; set; }
Property Value
Type | Description |
---|---|
string |
Tags
The list of tags for the representation
Declaration
public List<string> Tags { get; set; }
Property Value
Type | Description |
---|---|
List<string> |