Class: Google::Apis::JobsV3::UpdateCompanyRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::JobsV3::UpdateCompanyRequest
 
 
- 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. Request for updating a specified company.
Instance Attribute Summary collapse
- 
  
    
      #company  ⇒ Google::Apis::JobsV3::Company 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Company resource represents a company in the service.
 - 
  
    
      #update_mask  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional but strongly recommended for the best service experience.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpdateCompanyRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UpdateCompanyRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateCompanyRequest
Returns a new instance of UpdateCompanyRequest
      2541 2542 2543  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2541 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#company ⇒ Google::Apis::JobsV3::Company
A Company resource represents a company in the service. A company is the
entity that owns job postings, that is, the hiring entity responsible for
employing applicants for the job position.
Corresponds to the JSON property company
      2529 2530 2531  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2529 def company @company end  | 
  
#update_mask ⇒ String
Optional but strongly recommended for the best service
experience.
If update_mask is provided, only the specified fields in
company are updated. Otherwise all the fields are updated.
A field mask to specify the company fields to be updated. Only
top level fields of Company are supported.
Corresponds to the JSON property updateMask
      2539 2540 2541  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2539 def update_mask @update_mask end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2546 2547 2548 2549  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 2546 def update!(**args) @company = args[:company] if args.key?(:company) @update_mask = args[:update_mask] if args.key?(:update_mask) end  |