SearchQuery
data class SearchQuery(val operator: SearchOperator, val operands: List<Organization.OrganizationMembers.SearchQueryOperand>)
The action to perform on the operands. The accepted value are: AND
– all the operand values provided must match. OR
– the operator will return any matches to at least one of the operand values you supply.
Constructors
Link copied to clipboard
constructor(operator: SearchOperator, operands: List<Organization.OrganizationMembers.SearchQueryOperand>)