/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../../index"; /** * @example * { * spaceId: "spaceId", * body: [{ * label: "label", * targetId: "targetId" * }, { * label: "label", * targetId: "targetId" * }] * } */ export interface ActionsBulkCreateRequest { /** * The Space ID for which to create the Actions. */ spaceId: Flatfile.SpaceId; body: Flatfile.ApiActionConfigs; }