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