Interface IDeploymentItem
Interface representing Deployment Item.
Inherited Members
Namespace: Unity.Services.DeploymentApi .Editor
Assembly: Unity.Services.DeploymentApi.dll
Syntax
public interface IDeploymentItem : INotifyPropertyChanged
Properties
Name
Represents the name with an extension.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
string |
Path
Represents the full path of a deployment item.
Declaration
string Path { get; }
Property Value
Type | Description |
---|---|
string |
Progress
Represents the deployment progress of a deployment item. Is expected to be a value between 0 and 100.
Declaration
float Progress { get; }
Property Value
Type | Description |
---|---|
float |
States
Represents possible states of the local asset(s) the item represents, including with regards to its validity, format or other.
Declaration
ObservableCollection<AssetState> States { get; }
Property Value
Type | Description |
---|---|
Observable |
Status
Represents the status of the item relative to what is available live.
Declaration
DeploymentStatus Status { get; set; }
Property Value
Type | Description |
---|---|
Deployment |