/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Outcome summary of a job * * @example * { * acknowledge: true, * buttonText: "Acknowledge", * next: { * type: "id", * id: "us_jb_YOUR_ID" * }, * heading: "Success", * message: "Job was successful" * } */ export interface JobOutcome { acknowledge?: boolean; trigger?: Flatfile.JobOutcomeTrigger; buttonText?: string; next?: Flatfile.JobOutcomeNext; heading?: string; message?: string; hideDefaultButton?: boolean; }