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

Properties

id: string

1.2.0

appId: string

1.2.0

appBranchId: string

1.2.0

appBranchProfile: undefined | string

1.2.0

appBranchTaskInfo: AppBranchFinishedTaskInfo

1.2.0

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

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