/** * 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 MediaFilePartialUpdate */ export interface MediaFilePartialUpdate { /** * * @type {{ [key: string]: string | undefined; }} * @memberof MediaFilePartialUpdate */ info?: { [key: string]: string | undefined; }; /** * * @type {{ [key: string]: string | undefined; }} * @memberof MediaFilePartialUpdate */ customFields?: { [key: string]: string | undefined; }; /** * * @type {number} * @memberof MediaFilePartialUpdate */ totalFiles?: number | null; /** * * @type {boolean} * @memberof MediaFilePartialUpdate */ needsRescan?: boolean; /** * * @type {Array} * @memberof MediaFilePartialUpdate */ bookmarkedBy?: Array; } export declare function MediaFilePartialUpdateFromJSON(json: any): MediaFilePartialUpdate; export declare function MediaFilePartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaFilePartialUpdate; export declare function MediaFilePartialUpdateToJSON(value?: MediaFilePartialUpdate | null): any;