Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ImportConversationDataOperationResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2ImportConversationDataOperationResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Overview
Response used for ConversationDatasets.ImportConversationData long running operation.
Instance Attribute Summary collapse
-
#conversation_dataset ⇒ String
The resource name of the imported conversation dataset.
-
#import_count ⇒ Fixnum
Number of conversations imported successfully.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ImportConversationDataOperationResponse
constructor
A new instance of GoogleCloudDialogflowV2ImportConversationDataOperationResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ImportConversationDataOperationResponse
Returns a new instance of GoogleCloudDialogflowV2ImportConversationDataOperationResponse.
13919 13920 13921 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13919 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_dataset ⇒ String
The resource name of the imported conversation dataset. Format: projects//
locations//conversationDatasets/
Corresponds to the JSON property conversationDataset
13912 13913 13914 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13912 def conversation_dataset @conversation_dataset end |
#import_count ⇒ Fixnum
Number of conversations imported successfully.
Corresponds to the JSON property importCount
13917 13918 13919 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13917 def import_count @import_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13924 13925 13926 13927 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 13924 def update!(**args) @conversation_dataset = args[:conversation_dataset] if args.key?(:conversation_dataset) @import_count = args[:import_count] if args.key?(:import_count) end |