Class UpdateContentDetailsArgs
Support class to update details about a content item IUgcService.UpdateContentDetailsAsync 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 UpdateContentDetailsArgs
Constructors
UpdateContentDetailsArgs(string, string, string, bool, List<string>)
Construct a new GetContentArgs object.
Declaration
public UpdateContentDetailsArgs(string contentId, string name, string description, bool isPublic, List<string> tagsId)
Parameters
Type | Name | Description |
---|---|---|
string | contentId | The content identifier of the content to update |
string | name | The title of the content |
string | description | The text describing the content |
bool | isPublic | True if the content needs to be public, false otherwise |
List<string> | tagsId | The list of tag ids selected for the content |
Properties
ContentId
The content identifier of the content to update
Declaration
public string ContentId { get; set; }
Property Value
Type | Description |
---|---|
string |
CustomId
Custom Id for content
Declaration
public string CustomId { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
The new text describing the content
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
IsPublic
True if the content needs to be public, false otherwise
Declaration
public bool IsPublic { get; set; }
Property Value
Type | Description |
---|---|
bool |
Metadata
Metadata of the content
Declaration
public string Metadata { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The new name of the content
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
TagsId
The new list of tag ids selected for the content
Declaration
public List<string> TagsId { get; set; }
Property Value
Type | Description |
---|---|
List<string> |
Version
The current version id of the content
Declaration
public string Version { get; set; }
Property Value
Type | Description |
---|---|
string |