class Google::Apis::JobsV3::ListJobsResponse

Output only. List jobs response.

Attributes

jobs[RW]

The Jobs for a given company. The maximum number of items returned is based on the limit field provided in the request. Corresponds to the JSON property `jobs` @return [Array<Google::Apis::JobsV3::Job>]

metadata[RW]

Output only. Additional information returned to client, such as debugging information. Corresponds to the JSON property `metadata` @return [Google::Apis::JobsV3::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_v3/classes.rb, line 1577
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_v3/classes.rb, line 1582
def update!(**args)
  @jobs = args[:jobs] if args.key?(:jobs)
  @metadata = args[:metadata] if args.key?(:metadata)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end