interface TwinDocument {
    data?: Record<string, unknown>;
    documentName: string;
    twinId: string;
    version: number;
}

Properties

data?: Record<string, unknown>

New data related to the document.

documentName: string

Name of the document.

twinId: string

Parent twin ID of the document.

version: number

New version of the document.