Documentation
    Preparing search index...

    Interface IntentDispatchParams

    Exact values dispatched to one selected intent target.

    interface IntentDispatchParams {
        action: string;
        archetype: string;
        behavior?: Readonly<IntentBehavior>;
        convention: string;
        handler: string;
        payload?: unknown;
        sender: string;
    }
    Index

    Properties

    action: string

    Requested action.

    archetype: string

    Requested target archetype.

    behavior?: Readonly<IntentBehavior>

    Copied target lifecycle hints.

    convention: string

    Selected stable convention used to deliver the payload.

    handler: string

    Selected target napplet dTag.

    payload?: unknown

    Opaque convention payload.

    sender: string

    Runtime-attested source napplet dTag.