/** * This file was auto-generated by Fern from our API Definition. */ import * as Airtop from "../../../../index"; /** * @example * { * fileName: "fileName" * } */ export interface CreateFileRestInputV1 { /** Name of the file, must be unique within the session the file is used with */ fileName: string; /** Type of the file */ fileType?: Airtop.CreateFileRestInputV1FileType; /** File ID. Must be unique. Leave blank to get one generated for you */ id?: string; /** IDs of the associated sessions */ sessionIds?: string[]; }