class Google::Apis::JobsV3::JobDerivedInfo

Output only. Derived details about the job posting.

Attributes

job_categories[RW]

Job categories derived from Job.title and Job.description. Corresponds to the JSON property `jobCategories` @return [Array<String>]

locations[RW]

Structured locations of the job, resolved from Job.addresses. locations are exactly matched to Job.addresses in the same order. Corresponds to the JSON property `locations` @return [Array<Google::Apis::JobsV3::Location>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 1319
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/jobs_v3/classes.rb, line 1324
def update!(**args)
  @job_categories = args[:job_categories] if args.key?(:job_categories)
  @locations = args[:locations] if args.key?(:locations)
end