/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * id: "us_sp_YOUR_ID", * workbooks: [{ * id: "us_wb_YOUR_ID" * }], * sheets: [{ * id: "us_sh_YOUR_ID" * }], * lastAccessed: "2023-10-30T16:59:45.735Z" * } */ export interface GuestSpace { id: Flatfile.SpaceId; workbooks?: Flatfile.GuestWorkbook[]; sheets?: Flatfile.GuestSheet[]; lastAccessed?: Date; }