Interface IProject
This interface contains all the information pertaining to a cloud project.
Namespace: Unity.Cloud.Assets
Syntax
public interface IProject
Properties
Id
The project ID.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
String |
Metadata
The project metadata.
Declaration
IReadOnlyDictionary<string, IDeserializable> Metadata { get; }
Property Value
Type | Description |
---|---|
IReadOnlyDictionary<String, IDeserializable> |
Name
The project name.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
String |
Organization
Declaration
IOrganization Organization { get; }
Property Value
Type | Description |
---|---|
IOrganization |
Status
The project's status.
Declaration
IProject.ProjectStatus Status { get; }
Property Value
Type | Description |
---|---|
IProject.ProjectStatus |
StorageIds
The project's storage IDs.
Declaration
IReadOnlyCollection<string> StorageIds { get; }
Property Value
Type | Description |
---|---|
IReadOnlyCollection<String> |
UserCount
The project's users count.
Declaration
int UserCount { get; }
Property Value
Type | Description |
---|---|
Int32 |