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.
6590 6591 6592 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6590 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
6583 6584 6585 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6583 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
6588 6589 6590 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6588 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6595 6596 6597 6598 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 6595 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 |