devowl-wp
    Preparing search index...
    type Decision = {
        buttonClicked: ClickableButtonsNamed;
        consent: DecisionConsentGroups;
        created?: Date;
        previousUuids: string[];
        revision: string;
        uuid: string;
    }
    Index

    Properties

    buttonClicked: ClickableButtonsNamed

    The button which got clicked. This could be useful to reproduce implicit consents.

    The consent groups are always associated to the latest given consent and hold only the IDs.

    created?: Date

    When got the consent / cookie be created? Due to backwards-compatibility this can be undefined.

    previousUuids: string[]

    Since v3 all UUIDs are hold in the cookie comma-separated so the history of the given consents is no longer trackable in database and statistics. That means: Each consent gets it's own UUID.

    revision: string

    The revision is always associated to the latest given consent.

    uuid: string

    The latest given consent.