interface JConditionExpression {
    attribute: JAttribute;
    id: string;
    operator: NonNullable<undefined | "EMPTY" | "NOT_EMPTY" | "IS_NULL" | "IS_NOT_NULL" | "EQUALS" | "NOT_EQUALS" | "GREATER_THAN" | "LOWER_THAN" | "GREATER_OR_EQUALS_TO" | "LOWER_OR_EQUALS_TO">;
    value: any;
}

Properties

attribute: JAttribute
id: string
operator: NonNullable<undefined | "EMPTY" | "NOT_EMPTY" | "IS_NULL" | "IS_NOT_NULL" | "EQUALS" | "NOT_EQUALS" | "GREATER_THAN" | "LOWER_THAN" | "GREATER_OR_EQUALS_TO" | "LOWER_OR_EQUALS_TO">
value: any