/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * An onboarding datapoint represents a piece of collected information during the onboarding process. */ export interface OnboardingDatapoint { id: Flatfile.OnboardingDatapointId; onboardingId: Flatfile.OnboardingId; /** The source of the datapoint, e.g., "company-research", "user-input". */ source?: string; /** The JSON data stored in the datapoint. */ data?: any; /** When the onboarding datapoint was created */ createdAt: Date; /** When the onboarding datapoint was last updated */ updatedAt: Date; }