Class Item
Response type for a Data Item stored in the Cloud Save service.
Inherited Members
Namespace: Unity.Services.CloudSave.Models
Assembly: Unity.Services.CloudSave.dll
Syntax
public class Item
Properties
Created
The datetime when the value was initially created
Declaration
public DateTime? Created { get; }
Property Value
Type | Description |
---|---|
DateTime? |
Key
The key against which the data is stored
Declaration
public string Key { get; }
Property Value
Type | Description |
---|---|
string |
Modified
The datetime when the value was last modified
Declaration
public DateTime? Modified { get; }
Property Value
Type | Description |
---|---|
DateTime? |
Value
Any JSON serializable structure
Declaration
public IDeserializable Value { get; }
Property Value
Type | Description |
---|---|
IDeserializable |
WriteLock
The write lock value for the data, used for enforcing conflict checking when updating an existing data item
Declaration
public string WriteLock { get; }
Property Value
Type | Description |
---|---|
string |