Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ImportDocumentTemplate
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ImportDocumentTemplate
- 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
Overview
The template used for importing documents.
Instance Attribute Summary collapse
-
#knowledge_types ⇒ Array<String>
Required.
-
#metadata ⇒ Hash<String,String>
Metadata for the document.
-
#mime_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2ImportDocumentTemplate
constructor
A new instance of GoogleCloudDialogflowV2ImportDocumentTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ImportDocumentTemplate
Returns a new instance of GoogleCloudDialogflowV2ImportDocumentTemplate.
10816 10817 10818 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10816 def initialize(**args) update!(**args) end |
Instance Attribute Details
#knowledge_types ⇒ Array<String>
Required. The knowledge type of document content.
Corresponds to the JSON property knowledgeTypes
10801 10802 10803 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10801 def knowledge_types @knowledge_types end |
#metadata ⇒ Hash<String,String>
Metadata for the document. The metadata supports arbitrary key-value pairs.
Suggested use cases include storing a document's title, an external URL
distinct from the document's content_uri, etc. The max size of a key or a
value of the metadata is 1024 bytes.
Corresponds to the JSON property metadata
10809 10810 10811 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10809 def @metadata end |
#mime_type ⇒ String
Required. The MIME type of the document.
Corresponds to the JSON property mimeType
10814 10815 10816 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10814 def mime_type @mime_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10821 10822 10823 10824 10825 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10821 def update!(**args) @knowledge_types = args[:knowledge_types] if args.key?(:knowledge_types) @metadata = args[:metadata] if args.key?(:metadata) @mime_type = args[:mime_type] if args.key?(:mime_type) end |