Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListAssistantSessionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ListAssistantSessionsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
Response to list assistant sessions.
Instance Attribute Summary collapse
-
#assistant_sessions ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AssistantSession>
The assistant sessions.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListAssistantSessionsResponse
constructor
A new instance of GoogleCloudContactcenterinsightsV1ListAssistantSessionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1ListAssistantSessionsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1ListAssistantSessionsResponse.
6549 6550 6551 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6549 def initialize(**args) update!(**args) end |
Instance Attribute Details
#assistant_sessions ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AssistantSession>
The assistant sessions.
Corresponds to the JSON property assistantSessions
6542 6543 6544 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6542 def assistant_sessions @assistant_sessions end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page.
Corresponds to the JSON property nextPageToken
6547 6548 6549 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6547 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6554 6555 6556 6557 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6554 def update!(**args) @assistant_sessions = args[:assistant_sessions] if args.key?(:assistant_sessions) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |