/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * @example * { * data: { * id: "us_sp_YOUR_ID", * name: "My First Worbook", * displayOrder: 1, * createdAt: "2021-01-01T00:00:00.000Z", * updatedAt: "2021-01-01T00:00:00.000Z", * lastActivityAt: "2021-01-01T00:00:00.000Z", * createdByUserId: "us_usr_YOUR_ID", * workbooksCount: 1, * filesCount: 1, * isCollaborative: true, * upgradedAt: "2021-01-01T00:00:00.000Z", * guestAuthentication: [Flatfile.GuestAuthenticationEnum.MagicLink, Flatfile.GuestAuthenticationEnum.SharedLink], * environmentId: "us_env_YOUR_ID", * primaryWorkbookId: "us_wb_YOUR_ID", * labels: [] * } * } * * @example * { * data: { * id: "us_sp_YOUR_ID", * name: "My Updated Worbook", * displayOrder: 1, * createdAt: "2021-01-01T00:00:00.000Z", * updatedAt: "2021-01-01T00:00:00.000Z", * lastActivityAt: "2021-01-01T00:00:00.000Z", * createdByUserId: "us_usr_YOUR_ID", * workbooksCount: 1, * filesCount: 1, * isCollaborative: true, * upgradedAt: "2021-01-01T00:00:00.000Z", * guestAuthentication: [Flatfile.GuestAuthenticationEnum.MagicLink, Flatfile.GuestAuthenticationEnum.SharedLink], * environmentId: "us_env_YOUR_ID", * primaryWorkbookId: "us_wb_YOUR_ID", * labels: [] * } * } */ export interface SpaceResponse { data: Flatfile.Space; }