Represents an event object with specific properties.

interface EventObject {
    Name: string;
    Parameter: {
        [key: string]: any;
    };
    Result: {
        [key: string]: any;
    };
}

Properties

Properties

Name: string

The name or identifier of the event.

Parameter: {
    [key: string]: any;
}

Parameters associated with the event, stored as key-value pairs.

Result: {
    [key: string]: any;
}

Results or outcomes produced by the event, stored as key-value pairs.