Interface RealtimeFeatureRecord<TFeature>

interface RealtimeFeatureRecord<TFeature> {
    cursor?: string;
    feature: TFeature;
    id: FeatureId;
    key: string;
    receivedAt: number;
    sequence?: number;
    sourceId?: string;
    updatedAt?: string;
    version?: number;
}

Type Parameters

  • TFeature = unknown

Hierarchy (view full)

Properties

cursor?: string
feature: TFeature
key: string
receivedAt: number
sequence?: number
sourceId?: string
updatedAt?: string
version?: number