Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListConversationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListConversationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#conversations ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Conversation>
Corresponds to the JSON property
conversations. -
#next_page_token ⇒ String
Corresponds to the JSON property
nextPageToken.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListConversationsResponse
constructor
A new instance of GoogleCloudDialogflowV2ListConversationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListConversationsResponse
Returns a new instance of GoogleCloudDialogflowV2ListConversationsResponse.
13648 13649 13650 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13648 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversations ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Conversation>
Corresponds to the JSON property conversations
13641 13642 13643 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13641 def conversations @conversations end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
13646 13647 13648 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13646 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13653 13654 13655 13656 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 13653 def update!(**args) @conversations = args[:conversations] if args.key?(:conversations) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |