Discord.https - v3.0.16
    Preparing search index...

    Interface APIAuditLogChangeData<K, D>

    interface APIAuditLogChangeData<K extends string, D> {
        key: K;
        new_value?: D;
        old_value?: D;
    }

    Type Parameters

    • K extends string
    • D
    Index

    Properties

    key: K
    new_value?: D

    The new value

    If new_value is not present in the change object, while old_value is, that means the property that was changed has been reset, or set to null

    old_value?: D