/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface EditorProjectPartialUpdate */ export interface EditorProjectPartialUpdate { /** * * @type {number} * @memberof EditorProjectPartialUpdate */ file?: number; /** * * @type {number} * @memberof EditorProjectPartialUpdate */ parent?: number; /** * * @type {string} * @memberof EditorProjectPartialUpdate */ parentPath?: string; /** * * @type {number} * @memberof EditorProjectPartialUpdate */ existingFile?: number; /** * * @type {string} * @memberof EditorProjectPartialUpdate */ format?: string; /** * * @type {object} * @memberof EditorProjectPartialUpdate */ project?: object; } export declare function EditorProjectPartialUpdateFromJSON(json: any): EditorProjectPartialUpdate; export declare function EditorProjectPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): EditorProjectPartialUpdate; export declare function EditorProjectPartialUpdateToJSON(value?: EditorProjectPartialUpdate | null): any;