/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface DataClip { id: Flatfile.DataClipId; /** The name of the DataClip. */ name: string; /** A description of the DataClip. */ description?: string; /** The ID of the source sheet. */ sourceSheetId: Flatfile.SheetId; /** The ID of the sheet that is clipped from source sheet. */ clipSheetId: Flatfile.SheetId; /** The ID of the workbook. */ workbookId: string; /** The status of the DataClip. */ status: string; /** The user who created the DataClip. */ createdBy: string; /** The date when the DataClip was merged. */ mergedAt?: Date; /** The date when the DataClip was deleted. */ deletedAt?: Date; /** The date when the DataClip was updated. */ updatedAt: Date; /** The date when the DataClip was created. */ createdAt: Date; /** A URL for guests to access the DataClip. */ guestLinkUrl?: string; /** A signed token associated with the guest link. */ accessToken?: string; /** Indicates the shared link access level, public or restricted */ sharedLinkAccess?: string; }