Class MultiplayBuildsBuildFilesListItem
A single build file within the Build Files List response
Inherited Members
Namespace: Unity.Services.Apis.Admin.Multiplay
Assembly: Unity.Services.Apis.dll
Syntax
[DataContract(Name = "multiplay.builds.buildFilesListItem")]
[Preserve]
public class MultiplayBuildsBuildFilesListItem
Constructors
MultiplayBuildsBuildFilesListItem(string, string, string, bool)
Initializes a new instance of the Multiplay
Declaration
[Preserve]
public MultiplayBuildsBuildFilesListItem(string contentHash = null, string path = null, string signedUrl = null, bool uploaded = false)
Parameters
Type | Name | Description |
---|---|---|
string | contentHash | The "contentHash" should be MD5sum hash value. (required). |
string | path | Build file path in storage. (required). |
string | signedUrl | This signed URL allows a user upload and download the content for this path.. |
bool | uploaded | File upload happening async after file entry is created for some providers. This flag tell the user if the file synchronisation has completed.. |
Properties
ContentHash
The "contentHash" should be MD5sum hash value.
Declaration
[DataMember(Name = "contentHash", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string ContentHash { get; set; }
Property Value
Type | Description |
---|---|
string | The "contentHash" should be MD5sum hash value. |
Path
Build file path in storage.
Declaration
[DataMember(Name = "path", IsRequired = true, EmitDefaultValue = true)]
[Preserve]
public string Path { get; set; }
Property Value
Type | Description |
---|---|
string | Build file path in storage. |
SignedUrl
This signed URL allows a user upload and download the content for this path.
Declaration
[DataMember(Name = "signedUrl", EmitDefaultValue = false)]
[Preserve]
public string SignedUrl { get; set; }
Property Value
Type | Description |
---|---|
string | This signed URL allows a user upload and download the content for this path. |
Uploaded
File upload happening async after file entry is created for some providers. This flag tell the user if the file synchronisation has completed.
Declaration
[DataMember(Name = "uploaded", EmitDefaultValue = true)]
[Preserve]
public bool Uploaded { get; set; }
Property Value
Type | Description |
---|---|
bool | File upload happening async after file entry is created for some providers. This flag tell the user if the file synchronisation has completed. |