Class: Google::Apis::JobsV3::UpdateJobRequest
- Inherits:
-
Object
- Object
- Google::Apis::JobsV3::UpdateJobRequest
- 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
Input only. Update job request.
Instance Attribute Summary collapse
-
#job ⇒ Google::Apis::JobsV3::Job
A Job resource represents a job posting (also referred to as a "job listing" or "job requisition").
-
#update_mask ⇒ String
Optional but strongly recommended to be provided for the best service experience.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateJobRequest
constructor
A new instance of UpdateJobRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateJobRequest
Returns a new instance of UpdateJobRequest.
2623 2624 2625 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2623 def initialize(**args) update!(**args) end |
Instance Attribute Details
#job ⇒ Google::Apis::JobsV3::Job
A Job resource represents a job posting (also referred to as a "job listing"
or "job requisition"). A job belongs to a Company, which is the hiring entity
responsible for the job.
Corresponds to the JSON property job
2613 2614 2615 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2613 def job @job end |
#update_mask ⇒ String
Optional but strongly recommended to be provided for the best service
experience. If update_mask is provided, only the specified fields in job are
updated. Otherwise all the fields are updated. A field mask to restrict the
fields that are updated. Only top level fields of Job are supported.
Corresponds to the JSON property updateMask
2621 2622 2623 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2621 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2628 2629 2630 2631 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2628 def update!(**args) @job = args[:job] if args.key?(:job) @update_mask = args[:update_mask] if args.key?(:update_mask) end |