/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * id: "us_pr_YOUR_ID", * createdById: "us_usr_YOUR_ID", * accountId: "us_acc_YOUR_ID", * environmentId: "us_env_YOUR_ID", * spaceId: "us_sp_YOUR_ID", * promptType: Flatfile.PromptTypeEnum.AiAssist, * prompt: "Combine first name and last name into a new column called Full Name", * createdAt: "2021-01-01T00:00:00Z", * updatedAt: "2021-01-01T00:00:00Z" * } */ export interface Prompt { id: Flatfile.PromptId; /** ID of the user/guest who created the prompt */ createdById: string; accountId: Flatfile.AccountId; environmentId?: Flatfile.EnvironmentId; spaceId?: Flatfile.SpaceId; /** Type of prompt */ promptType: Flatfile.PromptTypeEnum; /** Text for prompts for AI Assist */ prompt: string; createdAt: Date; updatedAt: Date; deletedAt?: Date; }