@camunda8/sdk
    Preparing search index...

    Interface PublishStartMessageRequest<Variables>

    interface PublishStartMessageRequest<Variables = IProcessVariables> {
        correlationKey?: string;
        messageId?: string;
        name: string;
        tenantId?: string;
        timeToLive: MaybeTimeDuration;
        variables: Variables;
    }

    Type Parameters

    Index

    Properties

    correlationKey?: string
    messageId?: string

    Unique ID for this message

    name: string

    Should match the "Message Name" in a BPMN Message Catch

    tenantId?: string

    the tenantId for the message

    timeToLive: MaybeTimeDuration

    The number of seconds for the message to buffer on the broker, awaiting correlation. Omit or set to zero for no buffering.

    variables: Variables