Class: Google::Apis::JobsV3::CreateCompanyRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::JobsV3::CreateCompanyRequest
 
 
- 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. The Request of the CreateCompany method.
Instance Attribute Summary collapse
- 
  
    
      #company  ⇒ Google::Apis::JobsV3::Company 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Company resource represents a company in the service.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateCompanyRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CreateCompanyRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateCompanyRequest
Returns a new instance of CreateCompanyRequest
      697 698 699  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 697 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
      695 696 697  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 695 def company @company end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      702 703 704  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 702 def update!(**args) @company = args[:company] if args.key?(:company) end  |