Interface IRelationsResponse

interface IRelationsResponse {
    chunk: IEvent[];
    next_batch?: string;
    prev_batch?: string;
}

Properties

chunk: IEvent[]
next_batch?: string
prev_batch?: string