/**
 * 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 CreateAttachmentRequest
 */
export interface CreateAttachmentRequest {
    /**
     * The name of the file
     * @type {string}
     * @memberof CreateAttachmentRequest
     */
    name: string;
    /**
     * Optional description of the file.
     * @type {string}
     * @memberof CreateAttachmentRequest
     */
    description?: string;
    /**
     * The folder id where this attachment belong to
     * @type {string}
     * @memberof CreateAttachmentRequest
     */
    parent_folder_id?: string;
    /**
     *
     * @type {PassThroughBody}
     * @memberof CreateAttachmentRequest
     */
    pass_through?: PassThroughBody;
}
export declare function CreateAttachmentRequestFromJSON(json: any): CreateAttachmentRequest;
export declare function CreateAttachmentRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAttachmentRequest;
export declare function CreateAttachmentRequestToJSON(value?: CreateAttachmentRequest | null): any;
