A record retrieved from a stream

interface RecordItem {
    createdTime: Date;
    externalId: string;
    lastUpdatedTime: Date;
    properties: RecordProperties;
    space: string;
}

Properties

createdTime: Date

When the record was created

externalId: string

External ID of the record

lastUpdatedTime: Date

When the record was last updated

properties: RecordProperties

Properties organized by space -> container -> property

space: string

The space that the record belongs to