Magek Framework
    Preparing search index...

    Interface CommandEnvelope

    An Envelope carries a command/event body together with the name of its class. This is important information for the Distributor to work. Each provider has to implement their own Envelope.

    interface CommandEnvelope {
        currentUser?: UserEnvelope;
        requestID: UUID;
        context?: ContextEnvelope;
        typeName: string;
        version: number;
        value: CommandInput;
    }

    Hierarchy (View Summary)

    Index

    Properties

    currentUser?: UserEnvelope
    requestID: UUID
    context?: ContextEnvelope
    typeName: string
    version: number