Class: Google::Cloud::Dialogflow::V2::Conversation::GeneratorContext
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::V2::Conversation::GeneratorContext
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/v2/conversation.rb
Overview
Represents the context of a generator.
Defined Under Namespace
Modules: GeneratorType
Instance Attribute Summary collapse
-
#generator_type ⇒ ::Google::Cloud::Dialogflow::V2::Conversation::GeneratorContext::GeneratorType
readonly
Output only.
Instance Attribute Details
#generator_type ⇒ ::Google::Cloud::Dialogflow::V2::Conversation::GeneratorContext::GeneratorType (readonly)
Returns Output only. The type of the generator.
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
# File 'proto_docs/google/cloud/dialogflow/v2/conversation.rb', line 203 class GeneratorContext include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The available generator types. module GeneratorType # Unspecified generator type. GENERATOR_TYPE_UNSPECIFIED = 0 # Free form generator type. FREE_FORM = 1 # Agent coaching generator type. AGENT_COACHING = 2 # Summarization generator type. SUMMARIZATION = 3 # Translation generator type. TRANSLATION = 4 # Agent feedback generator type. AGENT_FEEDBACK = 5 # Customer message generation generator type. CUSTOMER_MESSAGE_GENERATION = 6 end end |