SoapPredicate data structure

Element

Description

Type

Occurrences

anyValue

Indicates whether the Any Value flag is selected

Boolean

1

name

Name of the predicate

string

1

operator

Operator

string

1

values

List of predicate values

SoapStringValue

0-unlimited

Specification:

<xs:complexType name="SoapPredicate">
  <xs:sequence>
    <xs:element name="anyValue" type="xs:boolean" />
    <xs:element name="name" nillable="true" type="xs:string" />
    <xs:element name="operator" nillable="true" type="xs:string" />
    <xs:element minOccurs="0" maxOccurs="unbounded" name="values" nillable="true" type="ns:SoapStringValue" />
  </xs:sequence>
</xs:complexType>

Example