/** * This file was auto-generated by Fern from our API Definition. */ /** * Whether a job outcome's effect should be triggered automatically */ export type JobOutcomeTriggerType = "manual" | "automatic" | "automatic_silent"; export declare const JobOutcomeTriggerType: { readonly Manual: "manual"; readonly Automatic: "automatic"; readonly AutomaticSilent: "automatic_silent"; };