/** * 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. */ import { MediaRootMiniReference } from './'; /** * * @export * @interface SavedSearchPartialUpdate */ export interface SavedSearchPartialUpdate { /** * * @type {MediaRootMiniReference} * @memberof SavedSearchPartialUpdate */ root?: MediaRootMiniReference; /** * * @type {Array} * @memberof SavedSearchPartialUpdate */ query?: Array; /** * * @type {string} * @memberof SavedSearchPartialUpdate */ name?: string; /** * * @type {boolean} * @memberof SavedSearchPartialUpdate */ shared?: boolean; } export declare function SavedSearchPartialUpdateFromJSON(json: any): SavedSearchPartialUpdate; export declare function SavedSearchPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): SavedSearchPartialUpdate; export declare function SavedSearchPartialUpdateToJSON(value?: SavedSearchPartialUpdate | null): any;