interface Action<T> {
    actionId: number;
    actionName: string;
    attributes: T;
    controlId: null | number;
    displayName: string;
}

Type Parameters

Properties

actionId: number
actionName: string
attributes: T
controlId: null | number
displayName: string