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-V2024SearchCriteriaFiltersValue  -Type TERMS `
-Terms [active, inactive] `
-Range null
  • Convert the resource to JSON
$SearchCriteriaFiltersValue | ConvertTo-JSON

[Back to top]