Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListSessionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ListSessionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Response for ListSessions method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
-
#sessions ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Session>
All the Sessions for a given data store.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListSessionsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1ListSessionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ListSessionsResponse
Returns a new instance of GoogleCloudDiscoveryengineV1ListSessionsResponse.
5981 5982 5983 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5981 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Pagination token, if not returned indicates the last page.
Corresponds to the JSON property nextPageToken
5974 5975 5976 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5974 def next_page_token @next_page_token end |
#sessions ⇒ Array<Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Session>
All the Sessions for a given data store.
Corresponds to the JSON property sessions
5979 5980 5981 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5979 def sessions @sessions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5986 5987 5988 5989 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5986 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sessions = args[:sessions] if args.key?(:sessions) end |