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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateJobRequest
Returns a new instance of UpdateJobRequest
2718 2719 2720 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2718 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
2706 2707 2708 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2706 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
2716 2717 2718 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2716 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2723 2724 2725 2726 |
# File 'generated/google/apis/jobs_v3/classes.rb', line 2723 def update!(**args) @job = args[:job] if args.key?(:job) @update_mask = args[:update_mask] if args.key?(:update_mask) end |