Skip to content
Snippets Groups Projects
attribute.model.ts 816 B
Newer Older
François Agneray's avatar
François Agneray committed
export interface Attribute {
    id: number;
    name: string;
    table_name: string;
    label: string;
    form_label: string;
    description: string;
    output_display: number;
    criteria_display: number;
    search_flag: string;
    search_type: string;
    operator: string;
    type: string;
    min: number;
    max: number;
    placeholder_min: string;
    placeholder_max: string;
    uri_action: string;
    renderer: string;
    display_detail: number;
    selected: boolean;
    order_by: boolean;
    order_display: number;
    detail: boolean;
    renderer_detail: string;
    options: string;
François Agneray's avatar
François Agneray committed
    vo_utype: string;
    vo_ucd: string;
    vo_unit: string;
    vo_description: string;
    vo_datatype: string;
    vo_size: number;
    id_criteria_family: number;
    id_output_category: number;
François Agneray's avatar
François Agneray committed
}