UNPKG

@apideck/node

Version:
53 lines (52 loc) 1.61 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { PassThroughBody } from './PassThroughBody'; /** * * @export * @interface CreateFileRequest */ export interface CreateFileRequest { /** * The name of the file. * @type {string} * @memberof CreateFileRequest */ name: string; /** * The parent folder to create the new file within. This can be an ID or a path depending on the downstream folder. Please see the connector section below to see downstream specific gotchas. * @type {string} * @memberof CreateFileRequest */ parent_folder_id: string; /** * ID of the drive to upload to. * @type {string} * @memberof CreateFileRequest */ drive_id?: string; /** * Optional description of the file. * @type {string} * @memberof CreateFileRequest */ description?: string; /** * * @type {PassThroughBody} * @memberof CreateFileRequest */ pass_through?: PassThroughBody; } export declare function CreateFileRequestFromJSON(json: any): CreateFileRequest; export declare function CreateFileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFileRequest; export declare function CreateFileRequestToJSON(value?: CreateFileRequest | null): any;