tmdb-ts
    Preparing search index...

    Interface ChangeItem<T>

    An individual change record with before and after values.

    interface ChangeItem<T> {
        action: string;
        id: string;
        iso_639_1: string;
        original_value: T;
        time: string;
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    action: string

    The type of change (e.g. "added", "updated", "deleted").

    id: string
    iso_639_1: string

    ISO 639-1 language code for the change.

    original_value: T

    The previous value before the change.

    time: string

    ISO 8601 timestamp of when the change occurred.

    value: T

    The new value after the change.