Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/dynablox_opencloud/src/classes/opencloud/DataStoreEntry.ts>DataStoreEntry

A Roblox OpenCloud API wrapper for Deno and NodeJS written in TypeScript.
Latest
class DataStoreEntry
import { DataStoreEntry } from "https://deno.land/x/dynablox_opencloud@v0.2.2/src/classes/opencloud/DataStoreEntry.ts";

DataStore key info.

Constructors

new
DataStoreEntry(
data: Data,
userIds: number[] | null,
attributes: Attributes | null,
versionId: string | null,
versionCreatedTime: string | null,
createdTime: string | null,
)

Create a new DataStore entry info.

Type Parameters

Data
Attributes extends Record<string, unknown>

Properties

readonly
attributes: Attributes | null

Metadata attributes for the entry.

readonly
createdTime: Date | null

The time the entry was first created at.

readonly
data: Data

The value of the entry.

readonly
userIds: number[] | null

Metadata UserIDs for the entry.

readonly
versionCreatedTime: Date | null

The time the version was created at.

readonly
versionId: string | null

The version key.