type property

String? type
getter/setter pair

Type of filter.

Required. Possible string values are:

  • "FILTER_TYPE_UNSPECIFIED" : Filter type unspecified. Position holder, INVALID, should never be used.
  • "UNIT_ONLY" : Filter by base compensation entry's unit. A job is a match if and only if the job contains a base CompensationEntry and the base CompensationEntry's unit matches provided units. Populate one or more units. See CompensationInfo.CompensationEntry for definition of base compensation entry.
  • "UNIT_AND_AMOUNT" : Filter by base compensation entry's unit and amount / range. A job is a match if and only if the job contains a base CompensationEntry, and the base entry's unit matches provided compensation_units and amount or range overlaps with provided compensation_range. See CompensationInfo.CompensationEntry for definition of base compensation entry. Set exactly one units and populate range.
  • "ANNUALIZED_BASE_AMOUNT" : Filter by annualized base compensation amount and base compensation entry's unit. Populate range and zero or more units.
  • "ANNUALIZED_TOTAL_AMOUNT" : Filter by annualized total compensation amount and base compensation entry's unit . Populate range and zero or more units.

Implementation

core.String? type;