Skip to content
Snippets Groups Projects
instance.model.ts 1.07 KiB
/**
 * This file is part of Anis Client.
 *
 * @copyright Laboratoire d'Astrophysique de Marseille / CNRS
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Interface for instance.
 *
 * @interface Instance
 */
export interface Instance {
    name: string;
    label: string;
    description: string;
    scientific_manager: string;
    instrument: string;
    wavelength_domain: string;
    display: number;
    data_path: string;
    files_path: string;
    public: boolean;
    portal_logo: string;
    design_color: string;
    design_background_color: string;
    design_logo: string;
    design_favicon: string;
    samp_enabled: boolean;
    back_to_portal: boolean;
    search_by_criteria_allowed: boolean;
    search_by_criteria_label: string;
    search_multiple_allowed: boolean;
    search_multiple_label: string;
    search_multiple_all_datasets_selected: boolean;
    documentation_allowed: boolean;
    documentation_label: string;
    nb_dataset_families: number;
    nb_datasets: number;
}