Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#conversation_profile ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationProfile
Corresponds to the JSON property
conversationProfile. -
#latest_message ⇒ String
Corresponds to the JSON property
latestMessage. -
#max_context_size ⇒ Fixnum
Corresponds to the JSON property
maxContextSize. -
#stateless_conversation ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequestMinimalConversation
Corresponds to the JSON property
statelessConversation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequest
constructor
A new instance of GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequest
Returns a new instance of GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequest.
13704 13705 13706 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13704 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_profile ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ConversationProfile
Corresponds to the JSON property conversationProfile
13687 13688 13689 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13687 def conversation_profile @conversation_profile end |
#latest_message ⇒ String
Corresponds to the JSON property latestMessage
13692 13693 13694 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13692 def @latest_message end |
#max_context_size ⇒ Fixnum
Corresponds to the JSON property maxContextSize
13697 13698 13699 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13697 def max_context_size @max_context_size end |
#stateless_conversation ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1GenerateStatelessSummaryRequestMinimalConversation
Corresponds to the JSON property statelessConversation
13702 13703 13704 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13702 def stateless_conversation @stateless_conversation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13709 13710 13711 13712 13713 13714 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13709 def update!(**args) @conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile) @latest_message = args[:latest_message] if args.key?(:latest_message) @max_context_size = args[:max_context_size] if args.key?(:max_context_size) @stateless_conversation = args[:stateless_conversation] if args.key?(:stateless_conversation) end |