Type Alias AsyncActionDetails

type AsyncActionDetails = {
    endTime?: string;
    error?: AsyncActionError;
    name?: string;
    startTime?: string;
    state?: AsyncCallStatus;
    taskDetails?: {
        error?: AsyncActionError;
        info?: string;
        name?: string;
        state?: AsyncCallStatus;
        taskId?: string;
    }[];
    taskProgress?: AsyncActionTaskProgress;
    type?: AsyncActionType;
}
Index

Properties

endTime?: string
name?: string

Name of the async operation

startTime?: string

State of the action

taskDetails?: {
    error?: AsyncActionError;
    info?: string;
    name?: string;
    state?: AsyncCallStatus;
    taskId?: string;
}[]

Type declaration

  • Optionalerror?: AsyncActionError
  • Optionalinfo?: string

    Additional details about task state

  • Optionalname?: string
  • Optionalstate?: AsyncCallStatus

    State of the action

  • OptionaltaskId?: string

Type of action being performed