Skip to main content

SearchcriteriaFiltersValue

Properties

NameTypeDescriptionNotes
TypeStringThe type of filter, e.g., ""TERMS"" or ""RANGE"".[optional]
Terms[]StringTerms to filter by (for ""TERMS"" type).[optional]
RangeSearchcriteriaFiltersValueRange[optional]

Examples

  • Prepare the resource
$SearchcriteriaFiltersValue = Initialize-SearchcriteriaFiltersValue  -Type TERMS `
-Terms ["active","inactive"] `
-Range null
  • Convert the resource to JSON
$SearchcriteriaFiltersValue | ConvertTo-JSON

[Back to top]