Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ExportEntityTypesResponse

Inherits:
Object
  • Object
show all
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

The response message for EntityTypes.ExportEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ExportEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowCxV3ExportEntityTypesResponse.



935
936
937
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 935

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

Instance Attribute Details

#entity_types_contentGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3InlineDestination

Inline destination for a Dialogflow operation that writes or exports objects ( e.g. intents) outside of Dialogflow. Corresponds to the JSON property entityTypesContent



927
928
929
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 927

def entity_types_content
  @entity_types_content
end

#entity_types_uriString

The URI to a file containing the exported entity types. This field is populated only if entity_types_uri is specified in ExportEntityTypesRequest. Corresponds to the JSON property entityTypesUri

Returns:

  • (String)


933
934
935
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 933

def entity_types_uri
  @entity_types_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



940
941
942
943
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 940

def update!(**args)
  @entity_types_content = args[:entity_types_content] if args.key?(:entity_types_content)
  @entity_types_uri = args[:entity_types_uri] if args.key?(:entity_types_uri)
end