Class: Google::Apis::JobsV3p1beta1::UpdateJobRequest

Inherits:
Object
  • Object
show all
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

Input only. Update job request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateJobRequest

Returns a new instance of UpdateJobRequest.



2907
2908
2909
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2907

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

Instance Attribute Details

#jobGoogle::Apis::JobsV3p1beta1::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



2897
2898
2899
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2897

def job
  @job
end

#update_maskString

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

Returns:

  • (String)


2905
2906
2907
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2905

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2912
2913
2914
2915
# File 'generated/google/apis/jobs_v3p1beta1/classes.rb', line 2912

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