Class: Google::Apis::JobsV3p1beta1::CommuteInfo
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3p1beta1::CommuteInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/jobs_v3p1beta1/classes.rb,
generated/google/apis/jobs_v3p1beta1/representations.rb,
generated/google/apis/jobs_v3p1beta1/representations.rb
Overview
Output only. Commute details related to this job.
Instance Attribute Summary collapse
-
#job_location ⇒ Google::Apis::JobsV3p1beta1::Location
Output only.
-
#travel_duration ⇒ String
The number of seconds required to travel to the job location from the query location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CommuteInfo
constructor
A new instance of CommuteInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CommuteInfo
Returns a new instance of CommuteInfo
307 308 309 |
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 307 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job_location ⇒ Google::Apis::JobsV3p1beta1::Location
Output only.
A resource that represents a location with full geographic information.
Corresponds to the JSON property jobLocation
297 298 299 |
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 297 def job_location @job_location end |
#travel_duration ⇒ String
The number of seconds required to travel to the job location from the
query location. A duration of 0 seconds indicates that the job is not
reachable within the requested duration, but was returned as part of an
expanded query.
Corresponds to the JSON property travelDuration
305 306 307 |
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 305 def travel_duration @travel_duration end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
312 313 314 315 |
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 312 def update!(**args) @job_location = args[:job_location] if args.key?(:job_location) @travel_duration = args[:travel_duration] if args.key?(:travel_duration) end |