Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2ImportConversationDataOperationMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

Metadata for a ConversationDatasets.ImportConversationData operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ImportConversationDataOperationMetadata

Returns a new instance of GoogleCloudDialogflowV2ImportConversationDataOperationMetadata.



13008
13009
13010
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13008

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#conversation_datasetString

The resource name of the imported conversation dataset. Format: projects// locations//conversationDatasets/ Corresponds to the JSON property conversationDataset

Returns:

  • (String)


12994
12995
12996
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12994

def conversation_dataset
  @conversation_dataset
end

#create_timeString

Timestamp when import conversation data request was created. The time is measured on server side. Corresponds to the JSON property createTime

Returns:

  • (String)


13000
13001
13002
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13000

def create_time
  @create_time
end

#partial_failuresArray<Google::Apis::DialogflowV3::GoogleRpcStatus>

Partial failures are failures that don't fail the whole long running operation, e.g. single files that couldn't be read. Corresponds to the JSON property partialFailures



13006
13007
13008
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13006

def partial_failures
  @partial_failures
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13013
13014
13015
13016
13017
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13013

def update!(**args)
  @conversation_dataset = args[:conversation_dataset] if args.key?(:conversation_dataset)
  @create_time = args[:create_time] if args.key?(:create_time)
  @partial_failures = args[:partial_failures] if args.key?(:partial_failures)
end