/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../../../index"; import * as Flatfile from "../../../../api/index"; import * as core from "../../../../core"; import { SpaceId } from "../../commons/types/SpaceId"; import { UserId } from "../../commons/types/UserId"; import { SpaceSize } from "./SpaceSize"; import { GuestAuthenticationEnum } from "../../environments/types/GuestAuthenticationEnum"; import { InternalSpaceConfigBase } from "./InternalSpaceConfigBase"; export declare const Space: core.serialization.ObjectSchema; export declare namespace Space { interface Raw extends InternalSpaceConfigBase.Raw { id: SpaceId.Raw; workbooksCount?: number | null; filesCount?: number | null; createdByUserId?: UserId.Raw | null; createdByUserName?: string | null; createdAt: string; updatedAt: string; expiredAt?: string | null; lastActivityAt?: string | null; guestLink?: string | null; name: string; displayOrder?: number | null; accessToken?: string | null; isCollaborative?: boolean | null; size?: SpaceSize.Raw | null; upgradedAt?: string | null; guestAuthentication: GuestAuthenticationEnum.Raw[]; createdFrom?: SpaceId.Raw | null; lastPropagatedAt?: string | null; } }