ChangesResult

interface ChangesResult {
    changes: Change[];
    hasMore: boolean;
    nextCursor?: string;
    shows: {
        [key: string]: Show;
    };
}

Properties

changes: Change[]

Array of the changes.

ChangesResult

hasMore: boolean

Whether there are more changes available.

ChangesResult

nextCursor?: string

Cursor value to pass to get the next set of changes.

ChangesResult

shows: {
    [key: string]: Show;
}

Map of the shows by their ids.

ChangesResult