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: { children?: IModelBoundaryCondition[]; key: string; label: string }
uuid: string
values?: { checked?: boolean; unit?: IUnit; value?: string | number }[]