UNPKG

@apideck/node

Version:
59 lines (58 loc) 1.8 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 CreateFolderRequest */ export interface CreateFolderRequest { /** * The name of the folder. * @type {string} * @memberof CreateFolderRequest */ 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 CreateFolderRequest */ parent_folder_id: string; /** * A unique identifier for an object. * @type {string} * @memberof CreateFolderRequest */ readonly id?: string; /** * Optional description of the folder. * @type {string} * @memberof CreateFolderRequest */ description?: string; /** * ID of the drive to create the folder in. * @type {string} * @memberof CreateFolderRequest */ drive_id?: string; /** * * @type {PassThroughBody} * @memberof CreateFolderRequest */ pass_through?: PassThroughBody; } export declare function CreateFolderRequestFromJSON(json: any): CreateFolderRequest; export declare function CreateFolderRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFolderRequest; export declare function CreateFolderRequestToJSON(value?: CreateFolderRequest | null): any;