Package com.stytch.sdk.b2b.organization
Class Organization.OrganizationMembers.SearchQuery
-
- All Implemented Interfaces:
public final class Organization.OrganizationMembers.SearchQueryA data class representing conditions for a query
-
-
Field Summary
Fields Modifier and Type Field Description private final SearchOperatoroperatorprivate final List<Organization.OrganizationMembers.SearchQueryOperand>operands
-
Constructor Summary
Constructors Constructor Description Organization.OrganizationMembers.SearchQuery(SearchOperator operator, List<Organization.OrganizationMembers.SearchQueryOperand> operands)
-
Method Summary
Modifier and Type Method Description final SearchOperatorgetOperator()The action to perform on the operands. final List<Organization.OrganizationMembers.SearchQueryOperand>getOperands()An array of operand objects that contains all of the filters and values to apply to your search query. -
-
Constructor Detail
-
Organization.OrganizationMembers.SearchQuery
Organization.OrganizationMembers.SearchQuery(SearchOperator operator, List<Organization.OrganizationMembers.SearchQueryOperand> operands)
-
-
Method Detail
-
getOperator
final SearchOperator getOperator()
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.
-
getOperands
final List<Organization.OrganizationMembers.SearchQueryOperand> getOperands()
An array of operand objects that contains all of the filters and values to apply to your search query.
-
-
-
-