/**
 * 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 UpdateFolderRequest
 */
export interface UpdateFolderRequest {
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof UpdateFolderRequest
     */
    readonly id?: string;
    /**
     * The name of the folder.
     * @type {string}
     * @memberof UpdateFolderRequest
     */
    name?: string;
    /**
     * Optional description of the folder.
     * @type {string}
     * @memberof UpdateFolderRequest
     */
    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 UpdateFolderRequest
     */
    parent_folder_id?: string;
    /**
     *
     * @type {PassThroughBody}
     * @memberof UpdateFolderRequest
     */
    pass_through?: PassThroughBody;
}
export declare function UpdateFolderRequestFromJSON(json: any): UpdateFolderRequest;
export declare function UpdateFolderRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateFolderRequest;
export declare function UpdateFolderRequestToJSON(value?: UpdateFolderRequest | null): any;
