Class: Google::Apis::JobsV3::JobDerivedInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v3/classes.rb,
generated/google/apis/jobs_v3/representations.rb,
generated/google/apis/jobs_v3/representations.rb

Overview

Output only. Derived details about the job posting.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ JobDerivedInfo

Returns a new instance of JobDerivedInfo.



1312
1313
1314
# File 'generated/google/apis/jobs_v3/classes.rb', line 1312

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#job_categoriesArray<String>

Job categories derived from Job.title and Job.description. Corresponds to the JSON property jobCategories

Returns:

  • (Array<String>)


1304
1305
1306
# File 'generated/google/apis/jobs_v3/classes.rb', line 1304

def job_categories
  @job_categories
end

#locationsArray<Google::Apis::JobsV3::Location>

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

Returns:



1310
1311
1312
# File 'generated/google/apis/jobs_v3/classes.rb', line 1310

def locations
  @locations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1317
1318
1319
1320
# File 'generated/google/apis/jobs_v3/classes.rb', line 1317

def update!(**args)
  @job_categories = args[:job_categories] if args.key?(:job_categories)
  @locations = args[:locations] if args.key?(:locations)
end