/** * Represents a generative AI job. * @category AI */ export interface IGenerativeAIJob { /** * The job ID. */ id: string; /** * The vendor id of the job. */ vendorId: string; }