Struct DatasetUpdateHistory
The update history properties of an asset version's dataset.
Inherited Members
Namespace: Unity.Cloud.Assets
Assembly: Unity.Cloud.Assets.dll
Syntax
public struct DatasetUpdateHistory
Properties
Description
A description of the dataset.
Declaration
public readonly string Description { get; }
Property Value
| Type | Description |
|---|---|
| string |
FileOrder
The order of the files in the dataset.
Declaration
public readonly IEnumerable<string> FileOrder { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<string> |
IsVisible
Indicates whether the dataset is visible or not.
Declaration
public readonly bool IsVisible { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Metadata
The metadata of the dataset.
Declaration
public readonly IReadOnlyDictionary<string, MetadataValue> Metadata { get; }
Property Value
| Type | Description |
|---|---|
| IReadOnlyDictionary<string, MetadataValue> |
Name
The name of the dataset.
Declaration
public readonly string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
SequenceNumber
The ordered sequence number of the update. The higher the number, the more recent the update.
Declaration
public readonly int SequenceNumber { get; }
Property Value
| Type | Description |
|---|---|
| int |
Tags
The user tags of the dataset.
Declaration
public readonly IEnumerable<string> Tags { get; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<string> |
Type
The type of the dataset.
Declaration
public readonly AssetType Type { get; }
Property Value
| Type | Description |
|---|---|
| AssetType |
Updated
The date and time when the update occurred.
Declaration
public readonly DateTime Updated { get; }
Property Value
| Type | Description |
|---|---|
| DateTime |
UpdatedBy
The ID of the user that made the update.
Declaration
public readonly UserId UpdatedBy { get; }
Property Value
| Type | Description |
|---|---|
| UserId |
UpdatedFromSequenceNumber
The sequence number this update was created from, if any.
Declaration
public readonly int? UpdatedFromSequenceNumber { get; }
Property Value
| Type | Description |
|---|---|
| int? |