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