Type alias StreamingMessage<R>

StreamingMessage<R>: {
    event: {
        createdDate: string;
        replayId: number;
        type: string;
    };
    sobject: R;
}

Type Parameters

Type declaration

  • event: {
        createdDate: string;
        replayId: number;
        type: string;
    }
    • createdDate: string
    • replayId: number
    • type: string
  • sobject: R