Interface ObjectCondition

Conditions that is evaluated upon object and set up, if something could be processed Evaluation of a condition always returns false / true

interface ObjectCondition {
    attr2?: string;
    attrName?: string;
    operStr?: string;
    path: string;
    type: ObjectConditionType;
    val1?: iAttrVal;
}

Properties

attr2?: string
attrName?: string
operStr?: string
path: string
val1?: iAttrVal