Class: Google::Apis::JobsV3::ListCompaniesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::JobsV3::ListCompaniesResponse
 
 
- 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
Output only. The List companies response object.
Instance Attribute Summary collapse
- 
  
    
      #companies  ⇒ Array<Google::Apis::JobsV3::Company> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Companies for the current client.
 - 
  
    
      #metadata  ⇒ Google::Apis::JobsV3::ResponseMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token to retrieve the next page of results.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListCompaniesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListCompaniesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListCompaniesResponse
Returns a new instance of ListCompaniesResponse
      1561 1562 1563  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 1561 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#companies ⇒ Array<Google::Apis::JobsV3::Company>
Companies for the current client.
Corresponds to the JSON property companies
      1548 1549 1550  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 1548 def companies @companies end  | 
  
#metadata ⇒ Google::Apis::JobsV3::ResponseMetadata
Output only.
Additional information returned to client, such as debugging information.
Corresponds to the JSON property metadata
      1554 1555 1556  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 1554 def @metadata end  | 
  
#next_page_token ⇒ String
A token to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
      1559 1560 1561  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 1559 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1566 1567 1568 1569 1570  | 
    
      # File 'generated/google/apis/jobs_v3/classes.rb', line 1566 def update!(**args) @companies = args[:companies] if args.key?(:companies) @metadata = args[:metadata] if args.key?(:metadata) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |