interface AppBranchTaskFinishedPendingEventController {
    id: string;
    appId: string;
    appBranchId: string;
    appBranchProfile: undefined | string;
    appBranchTaskInfo: AppBranchFinishedTaskInfo;
    info: AppBranchTaskFinishedEventInfo;
    dismiss: ((__namedParameters?: {}) => Promise<void>);
}

Properties

id: string
appId: string
appBranchId: string
appBranchProfile: undefined | string
appBranchTaskInfo: AppBranchFinishedTaskInfo

1.2.0 - fields from the info field are now directly available in the controller.

dismiss: ((__namedParameters?: {}) => Promise<void>)