/** * 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 { ElementsUserMiniReference, MediaRootMiniReference } from './'; /** * * @export * @interface SavedSearch */ export interface SavedSearch { /** * * @type {number} * @memberof SavedSearch */ id: number; /** * * @type {ElementsUserMiniReference} * @memberof SavedSearch */ user: ElementsUserMiniReference; /** * * @type {MediaRootMiniReference} * @memberof SavedSearch */ root?: MediaRootMiniReference; /** * * @type {Array} * @memberof SavedSearch */ query: Array; /** * * @type {string} * @memberof SavedSearch */ readonly url: string; /** * * @type {string} * @memberof SavedSearch */ name: string; /** * * @type {boolean} * @memberof SavedSearch */ shared?: boolean; } export declare function SavedSearchFromJSON(json: any): SavedSearch; export declare function SavedSearchFromJSONTyped(json: any, ignoreDiscriminator: boolean): SavedSearch; export declare function SavedSearchToJSON(value?: SavedSearch | null): any;