Interface CreatedEvent

interface CreatedEvent {
    id: string;
    timestampMs: number;
    domain: string;
    clientId: string;
    userId: null | string;
    ip: null | string;
    targetType: string;
    targetId: string;
    meta?: unknown;
    action: "created";
    rels?: {
        parents?: [string, string][];
        children?: [string, string][];
    };
}

Hierarchy

  • BaseDataEvent
    • CreatedEvent

Properties

id: string
timestampMs: number
domain: string
clientId: string
userId: null | string
ip: null | string
targetType: string
targetId: string
meta?: unknown
action: "created"
rels?: {
    parents?: [string, string][];
    children?: [string, string][];
}

Type declaration

  • Optional parents?: [string, string][]
  • Optional children?: [string, string][]

Generated using TypeDoc