IVersion Interface

Packages > @fluidframework/driver-definitions > IVersion

Represents a version of the snapshot of a data store.

This API is provided for existing users, but is not recommended for new users.

To use, import via @fluidframework/driver-definitions/legacy.

For more information about our API support guarantees, see here .

Signature

export interface IVersion

Properties

Property Alerts Modifiers Type Description
date Alpha optional IsoDate Time when snapshot was generated.
id Alpha string Version ID
treeId Alpha string Tree ID for this version of the snapshot

Property Details

date

Time when snapshot was generated.

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/driver-definitions/alpha.

For more information about our API support guarantees, see here .

Signature

date?: IsoDate;

Type: IsoDate

id

Version ID

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/driver-definitions/alpha.

For more information about our API support guarantees, see here .

Signature

id: string;

Type: string

treeId

Tree ID for this version of the snapshot

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/driver-definitions/alpha.

For more information about our API support guarantees, see here .

Signature

treeId: string;

Type: string