Class: Google::Apis::CesV1::ListToolsetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::ListToolsetsResponse
- 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
-
#next_page_token ⇒ String
A token that can be sent as ListToolsetsRequest.page_token to retrieve the next page.
-
#toolsets ⇒ Array<Google::Apis::CesV1::Toolset>
The list of toolsets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListToolsetsResponse
constructor
A new instance of ListToolsetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListToolsetsResponse
Returns a new instance of ListToolsetsResponse.
5991 5992 5993 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5991 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
5984 5985 5986 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5984 def next_page_token @next_page_token end |
#toolsets ⇒ Array<Google::Apis::CesV1::Toolset>
The list of toolsets.
Corresponds to the JSON property toolsets
5989 5990 5991 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5989 def toolsets @toolsets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5996 5997 5998 5999 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5996 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @toolsets = args[:toolsets] if args.key?(:toolsets) end |