Class: Google::Apis::CesV1::ListToolsetsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb

Overview

Response message for AgentService.ListToolsets.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListToolsetsResponse

Returns a new instance of ListToolsetsResponse.



4337
4338
4339
# File 'lib/google/apis/ces_v1/classes.rb', line 4337

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

Instance Attribute Details

#next_page_tokenString

A token that can be sent as ListToolsetsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4330
4331
4332
# File 'lib/google/apis/ces_v1/classes.rb', line 4330

def next_page_token
  @next_page_token
end

#toolsetsArray<Google::Apis::CesV1::Toolset>

The list of toolsets. Corresponds to the JSON property toolsets

Returns:



4335
4336
4337
# File 'lib/google/apis/ces_v1/classes.rb', line 4335

def toolsets
  @toolsets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4342
4343
4344
4345
# File 'lib/google/apis/ces_v1/classes.rb', line 4342

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @toolsets = args[:toolsets] if args.key?(:toolsets)
end