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 UpdateFileRequest */ export interface UpdateFileRequest { /** * The name of the file. * @type {string} * @memberof UpdateFileRequest */ name?: string; /** * Optional description of the file. * @type {string} * @memberof UpdateFileRequest */ description?: 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 UpdateFileRequest */ parent_folder_id?: string; /** * * @type {PassThroughBody} * @memberof UpdateFileRequest */ pass_through?: PassThroughBody; } export declare function UpdateFileRequestFromJSON(json: any): UpdateFileRequest; export declare function UpdateFileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFileRequest; export declare function UpdateFileRequestToJSON(value?: UpdateFileRequest | null): any;