interface AppBranchProcessStartedPendingEventController {
    id: string;
    appId: string;
    appBranchId: string;
    appBranchProfile: undefined | string;
    appBranchProcessInfo: AppBranchProcessInfo;
    info: AppBranchProcessStartedEventInfo;
    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

appBranchProcessInfo: AppBranchProcessInfo

1.2.0

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

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