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
      2574 2575 2576  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2574 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
      2562 2563 2564  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2562 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
      2572 2573 2574  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2572 def update_mask @update_mask end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2579 2580 2581 2582  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2579 def update!(**args) @job = args[:job] if args.key?(:job) @update_mask = args[:update_mask] if args.key?(:update_mask) end  |