Interface BatchBinActionPayload

interface BatchBinActionPayload {
    actions: {
        actionName: string;
        payload: any;
    }[];
}

Properties

Properties

actions: {
    actionName: string;
    payload: any;
}[]

Array of actions to perform

Type declaration

  • actionName: string

    The name of the action to perform

  • payload: any

    The payload for this specific action