import { MatchCriterion } from './matchCriterion'; /** * A criterion that checks whether a Property Value is equal to one of the given string values */ export interface PropertyValueIn extends MatchCriterion { /** * The property key whose value will form the left-hand side of the operation */ propertyKey: string; /** * The value to be compared against */ value: Array; /** * The available values are: PropertyValueEquals, PropertyValueIn, SubHoldingKeyValueEquals */ criterionType: PropertyValueIn.CriterionTypeEnum; } export declare namespace PropertyValueIn { type CriterionTypeEnum = 'PropertyValueEquals' | 'PropertyValueIn' | 'SubHoldingKeyValueEquals'; const CriterionTypeEnum: { PropertyValueEquals: CriterionTypeEnum; PropertyValueIn: CriterionTypeEnum; SubHoldingKeyValueEquals: CriterionTypeEnum; }; }