telecommutePreference property

String? telecommutePreference
getter/setter pair

Allows the client to return jobs without a set location, specifically, telecommuting jobs (telecommuting is considered by the service as a special location).

Job.posting_region indicates if a job permits telecommuting. If this field is set to TelecommutePreference.TELECOMMUTE_ALLOWED, telecommuting jobs are searched, and address and lat_lng are ignored. If not set or set to TelecommutePreference.TELECOMMUTE_EXCLUDED, the telecommute status of the jobs is ignored. Jobs that have PostingRegion.TELECOMMUTE and have additional Job.addresses may still be matched based on other location filters using address or latlng. This filter can be used by itself to search exclusively for telecommuting jobs, or it can be combined with another location filter to search for a combination of job locations, such as "Mountain View" or "telecommuting" jobs. However, when used in combination with other location filters, telecommuting jobs can be treated as less relevant than other jobs in the search response.

Optional. Possible string values are:

  • "TELECOMMUTE_PREFERENCE_UNSPECIFIED" : Default value if the telecommute preference is not specified.
  • "TELECOMMUTE_EXCLUDED" : Deprecated: Ignore telecommute status of jobs. Use TELECOMMUTE_JOBS_EXCLUDED if want to exclude telecommute jobs.
  • "TELECOMMUTE_ALLOWED" : Allow telecommute jobs.
  • "TELECOMMUTE_JOBS_EXCLUDED" : Exclude telecommute jobs.

Implementation

core.String? telecommutePreference;