class Google::Apis::JobsV4::ListCompaniesResponse
The List companies response object.
Attributes
companies[RW]
Companies for the current client. Corresponds to the JSON property `companies` @return [Array<Google::Apis::JobsV4::Company>]
metadata[RW]
Additional information returned to client, such as debugging information. Corresponds to the JSON property `metadata` @return [Google::Apis::JobsV4::ResponseMetadata]
next_page_token[RW]
A token to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/jobs_v4/classes.rb, line 1499 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/jobs_v4/classes.rb, line 1504 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