Class UpdateRepresentationArgs
Support class to update details about a representation item IUgcService.UpdateRepresentationAsync Contains all the required and optional parameters of the request
Inherited Members
Namespace: Unity.Services.Ugc.Bridge
Assembly: Unity.Services.Ugc.Bridge.Editor.dll
Syntax
public class UpdateRepresentationArgs
Constructors
UpdateRepresentationArgs(string, string, List<string>, string)
Construct a new UpdateRepresentationArgs object.
Declaration
public UpdateRepresentationArgs(string contentId, string representationId, List<string> tags, string version)
Parameters
| Type | Name | Description |
|---|---|---|
| string | contentId | The content identifier of the content to update |
| string | representationId | The title of the content |
| List<string> | tags | The list of tag ids selected for the content |
| string | version | Set the current version of the representation |
Properties
ContentId
The id of 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 |
RepresentationId
The representation identifier of the representation
Declaration
public string RepresentationId { 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> |
Version
The current version of the representation
Declaration
public string Version { get; set; }
Property Value
| Type | Description |
|---|---|
| string |