Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListAssistantsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListAssistantsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Response message for the AssistantService.ListAssistants method.
Instance Attribute Summary collapse
-
#assistants ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant>
All the customer's Assistants.
-
#next_page_token ⇒ String
A token that can be sent as ListAssistantsRequest.page_token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListAssistantsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListAssistantsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListAssistantsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListAssistantsResponse.
27600 27601 27602 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27600 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assistants ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAssistant>
All the customer's Assistants.
Corresponds to the JSON property assistants
27592 27593 27594 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27592 def assistants @assistants end |
#next_page_token ⇒ String
A token that can be sent as ListAssistantsRequest.page_token to retrieve the
next page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
27598 27599 27600 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27598 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27605 27606 27607 27608 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 27605 def update!(**args) @assistants = args[:assistants] if args.key?(:assistants) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |