class Google::Apis::JobsV3::UpdateJobRequest

Input only. Update job request.

Attributes

job[RW]

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` @return [Google::Apis::JobsV3::Job]

update_mask[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v3/classes.rb, line 2634
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 2639
def update!(**args)
  @job = args[:job] if args.key?(:job)
  @update_mask = args[:update_mask] if args.key?(:update_mask)
end