Class GetRepresentationArgs
Support class to make a representation request with IUgcService.GetRepresentationAsync Contains all the parameters of the request
Inherited Members
Namespace: Unity.Services.Ugc.Bridge
Assembly: Unity.Services.Ugc.Bridge.Editor.dll
Syntax
public class GetRepresentationArgs
Constructors
GetRepresentationArgs(string, string)
Construct a new GetRepresentationArgs object.
Declaration
public GetRepresentationArgs(string contentId, string representationId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | contentId | The content identifier of the representation |
| string | representationId | The representation identifier |
Properties
ContentId
The content identifier of the representation
Declaration
public string ContentId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
DownloadRepresentation
True if the representation output should be downloaded after Representation is fetched. Default is false.
Declaration
public bool DownloadRepresentation { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
RepresentationId
The representation identifier of the representation
Declaration
public string RepresentationId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |