Class AddVersionRequest
Increase the version of a content by 1
Inherited Members
Namespace: Unity.Services.Apis.UGC
Assembly: solution.dll
Syntax
[Preserve]
public class AddVersionRequest
Constructors
AddVersionRequest(string, string)
Initializes a new instance of the AddVersionRequest class.
Declaration
[Preserve]
public AddVersionRequest(string contentMd5Hash = null, string thumbnailMd5Hash = null)
Parameters
Type | Name | Description |
---|---|---|
string | contentMd5Hash | A base64 encoded representation of the Content binary that will be uploaded. Used as a checksum.. |
string | thumbnailMd5Hash | A base64 encoded representation of the Thumbnail file that will be uploaded. Used as a checksum.. |
Properties
ContentMd5Hash
A base64 encoded representation of the Content binary that will be uploaded. Used as a checksum.
Declaration
[Preserve]
public string ContentMd5Hash { get; set; }
Property Value
Type | Description |
---|---|
string | A base64 encoded representation of the Content binary that will be uploaded. Used as a checksum. |
ThumbnailMd5Hash
A base64 encoded representation of the Thumbnail file that will be uploaded. Used as a checksum.
Declaration
[Preserve]
public string ThumbnailMd5Hash { get; set; }
Property Value
Type | Description |
---|---|
string | A base64 encoded representation of the Thumbnail file that will be uploaded. Used as a checksum. |