Class: Google::Apis::JobsV2::ListCompaniesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v2/classes.rb,
generated/google/apis/jobs_v2/representations.rb,
generated/google/apis/jobs_v2/representations.rb

Overview

Output only. The List companies response object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListCompaniesResponse

Returns a new instance of ListCompaniesResponse



2439
2440
2441
# File 'generated/google/apis/jobs_v2/classes.rb', line 2439

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

Instance Attribute Details

#companiesArray<Google::Apis::JobsV2::Company>

Companies for the current client. Corresponds to the JSON property companies

Returns:



2425
2426
2427
# File 'generated/google/apis/jobs_v2/classes.rb', line 2425

def companies
  @companies
end

#metadataGoogle::Apis::JobsV2::ResponseMetadata

Output only. Additional information returned to client, such as debugging information. Corresponds to the JSON property metadata



2432
2433
2434
# File 'generated/google/apis/jobs_v2/classes.rb', line 2432

def 
  @metadata
end

#next_page_tokenString

A token to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2437
2438
2439
# File 'generated/google/apis/jobs_v2/classes.rb', line 2437

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2444
2445
2446
2447
2448
# File 'generated/google/apis/jobs_v2/classes.rb', line 2444

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