Interface IModelBoundaryConditionValue

    interface IModelBoundaryConditionValue {
        geometry: string;
        labels?: string;
        name: string;
        selected: {
            label: number;
            uuid: string;
        }[];
        type: {
            children?: IModelBoundaryCondition[];
            key: string;
            label: string;
        };
        uuid: string;
        values?: {
            checked?: boolean;
            unit?: IUnit;
            value?: string | number;
        }[];
    }

    Properties

    geometry: string
    labels?: string
    name: string
    selected: {
        label: number;
        uuid: string;
    }[]

    Type declaration

    • label: number
    • uuid: string
    type: {
        children?: IModelBoundaryCondition[];
        key: string;
        label: string;
    }

    Type declaration

    uuid: string
    values?: {
        checked?: boolean;
        unit?: IUnit;
        value?: string | number;
    }[]

    Type declaration

    • Optional checked?: boolean
    • Optional unit?: IUnit
    • Optional value?: string | number

    Generated using TypeDoc and TypeDoc Airthium Plugin