DataStoreObjectVersionInfo
An instance describing version information for a key.
This class is not replicated. Its interface does not cross the network boundary.
This class is not creatable. Instances of this class cannot be created with Instance.new.
Memory category | Instances |
---|
Member index 3
Description
An instance describing version information for a key, including the version string, created time, and whether it has been marked as deleted.
See also:
- Data Stores, an in-depth guide on data structure, management, error handling, etc.
History 7
- 553 Change Default of Version from to
- 553 Change Default of IsDeleted from to
- 553 Change Default of CreatedTime from to
- 489 Add Version
- 489 Add IsDeleted
- 489 Add CreatedTime
- 489 Add DataStoreObjectVersionInfo
Members 3
CreatedTime
Type | Default | |
---|---|---|
int64 |
This property indicates when the version was created in milliseconds since epoch.
This property is not replicated. Its interface does not cross the network boundary.
This property is read-only. Its value can be read, but it cannot be modified.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | false/true |
History 2
- 553 Change Default of CreatedTime from to
- 489 Add CreatedTime
IsDeleted
Type | Default | |
---|---|---|
bool |
This property describes whether the version has been marked as deleted. Deleted versions will be permanently deleted after 30 days.
This property is not replicated. Its interface does not cross the network boundary.
This property is read-only. Its value can be read, but it cannot be modified.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | false/true |
Version
Type | Default | |
---|---|---|
string |
This property uniquely identifies a particular version of the key. It can be passed to DataStore:GetVersionAsync() or DataStore:RemoveVersionAsync() to get or remove the version respectively.
This property is not replicated. Its interface does not cross the network boundary.
This property is read-only. Its value can be read, but it cannot be modified.
Thread safety | ReadSafe |
---|---|
Category | Data |
Loaded/Saved | false/true |