class Google::Apis::JobsV4::ListTenantsResponse

The List tenants response object.

Attributes

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]

tenants[RW]

Tenants for the current client. Corresponds to the JSON property `tenants` @return [Array<Google::Apis::JobsV4::Tenant>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/jobs_v4/classes.rb, line 1562
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 1567
def update!(**args)
  @metadata = args[:metadata] if args.key?(:metadata)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @tenants = args[:tenants] if args.key?(:tenants)
end