UNPKG

@apideck/node

Version:
47 lines (46 loc) 1.47 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 CopyFolderRequest */ export interface CopyFolderRequest { /** * 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 CopyFolderRequest */ parent_folder_id: string; /** * A unique identifier for an object. * @type {string} * @memberof CopyFolderRequest */ readonly id?: string; /** * The name of the folder. * @type {string} * @memberof CopyFolderRequest */ name?: string; /** * * @type {PassThroughBody} * @memberof CopyFolderRequest */ pass_through?: PassThroughBody; } export declare function CopyFolderRequestFromJSON(json: any): CopyFolderRequest; export declare function CopyFolderRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CopyFolderRequest; export declare function CopyFolderRequestToJSON(value?: CopyFolderRequest | null): any;