Interface IAssetFile
This interface contains all the information pertaining to a cloud asset file.
Namespace: Unity.Cloud.Assets
Syntax
public interface IAssetFile
Properties
AssetId
The id of the asset linked to this file.
Declaration
string AssetId { get; set; }
Property Value
Type | Description |
---|---|
String |
AssetVersion
The version of the asset linked to this file.
Declaration
int AssetVersion { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Description
The description of the asset file.
Declaration
string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
DownloadUrl
The download url of the asset linked to this file.
Declaration
string DownloadUrl { get; set; }
Property Value
Type | Description |
---|---|
String |
FileSize
The file size of the asset file.
Declaration
long FileSize { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
Id
The id of the asset file.
Declaration
string Id { get; set; }
Property Value
Type | Description |
---|---|
String |
Name
The name of the asset file.
Declaration
string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Status
The status of the asset.
Declaration
string Status { get; set; }
Property Value
Type | Description |
---|---|
String |
StatusDetails
The status details of the asset.
Declaration
string StatusDetails { get; set; }
Property Value
Type | Description |
---|---|
String |
StorageId
The storage id of the asset file.
Declaration
string StorageId { get; set; }
Property Value
Type | Description |
---|---|
String |
Tags
The tags of the asset file.
Declaration
List<string> Tags { get; set; }
Property Value
Type | Description |
---|---|
List<String> |
Type
The type of the asset file.
Declaration
string Type { get; set; }
Property Value
Type | Description |
---|---|
String |
UploadUrl
The upload url of the asset linked to this file.
Declaration
string UploadUrl { get; set; }
Property Value
Type | Description |
---|---|
String |