/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface CreateDataClipRequest { /** The name of the DataClip. */ name: string; /** A description of the DataClip. */ description?: string; /** The ID of the source sheet. */ sourceSheetId: Flatfile.SheetId; /** The list of collaborators. */ collaborators?: string[]; /** The type of shared link to generate for the DataClip. */ sharedLinkAccess?: Flatfile.SharedLinkAccess; }