Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ActionBinding

    Binding is the associative entity joining a trigger, and an action together.

    interface ActionBinding {
        id?: string;
        trigger_id?: string;
        display_name?: string;
        action?: Action;
        created_at?: string;
        updated_at?: string;
    }
    Index

    Properties

    id?: string

    The unique ID of this binding.

    trigger_id?: string
    display_name?: string

    The name of the binding.

    action?: Action
    created_at?: string

    The time when the binding was created.

    updated_at?: string

    The time when the binding was updated.