google-apis-dialogflow_v3 0.102.0 → 0.104.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 465185077fc97392593c2b80627516b4f780e39ec7a8ff2a4921e4c1b671d66e
|
4
|
+
data.tar.gz: 8bbffe434b7335a4c76752e45cfedc44a0b315dfdc047d0f11800a9904c7ec3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2170a06faf518d1f8cc4d0835b3c97f4e279913664bbdf7c4d9d3b23bad59f6524e2f3c6143bca9f9b5af71f32210876740d1e22b02f4741b0f5759412d8474
|
7
|
+
data.tar.gz: 70640bd6e6db82d1a4419bb9ae4728d4417cf606da79db52c88434b812f65008574131e633566a5eeaa54002b91aa1ddce14ca2ab56d09894e0e07891397adba
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.104.0 (2025-03-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250310
|
6
|
+
|
7
|
+
### v0.103.0 (2025-03-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250227
|
10
|
+
|
3
11
|
### v0.102.0 (2025-01-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250103
|
@@ -174,8 +174,8 @@ module Google
|
|
174
174
|
# @return [String]
|
175
175
|
attr_accessor :no_speech_timeout
|
176
176
|
|
177
|
-
# Use timeout based endpointing, interpreting endpointer
|
178
|
-
# timeout value.
|
177
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
178
|
+
# of timeout value.
|
179
179
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
180
180
|
# @return [Boolean]
|
181
181
|
attr_accessor :use_timeout_based_endpointing
|
@@ -794,7 +794,7 @@ module Google
|
|
794
794
|
include Google::Apis::Core::Hashable
|
795
795
|
|
796
796
|
# Optional. Condition boost specifications. If a document matches multiple
|
797
|
-
# conditions in the
|
797
|
+
# conditions in the specifications, boost scores from these specifications are
|
798
798
|
# all applied and combined in a non-linear way. Maximum number of specifications
|
799
799
|
# is 20.
|
800
800
|
# Corresponds to the JSON property `conditionBoostSpecs`
|
@@ -1372,6 +1372,13 @@ module Google
|
|
1372
1372
|
# @return [String]
|
1373
1373
|
attr_accessor :data_store_type
|
1374
1374
|
|
1375
|
+
# The document processing mode for the data store connection. Should only be set
|
1376
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
1377
|
+
# DOCUMENTS, as this is the legacy mode.
|
1378
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
1379
|
+
# @return [String]
|
1380
|
+
attr_accessor :document_processing_mode
|
1381
|
+
|
1375
1382
|
def initialize(**args)
|
1376
1383
|
update!(**args)
|
1377
1384
|
end
|
@@ -1380,6 +1387,7 @@ module Google
|
|
1380
1387
|
def update!(**args)
|
1381
1388
|
@data_store = args[:data_store] if args.key?(:data_store)
|
1382
1389
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
1390
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
1383
1391
|
end
|
1384
1392
|
end
|
1385
1393
|
|
@@ -3134,7 +3142,7 @@ module Google
|
|
3134
3142
|
# every page's transition routes and can support use cases such as the user
|
3135
3143
|
# saying "help" or "can I talk to a human?", which can be handled in a common
|
3136
3144
|
# way regardless of the current page. Transition routes defined in the page have
|
3137
|
-
# higher priority than those defined in the flow. TransitionRoutes are
|
3145
|
+
# higher priority than those defined in the flow. TransitionRoutes are evaluated
|
3138
3146
|
# in the following order: * TransitionRoutes with intent specified. *
|
3139
3147
|
# TransitionRoutes with only condition specified. TransitionRoutes with intent
|
3140
3148
|
# specified are inherited by pages in the flow.
|
@@ -5708,7 +5716,7 @@ module Google
|
|
5708
5716
|
|
5709
5717
|
# A list of transitions for the transition rules of this page. They route the
|
5710
5718
|
# conversation to another page in the same flow, or another flow. When we are in
|
5711
|
-
# a certain page, the TransitionRoutes are
|
5719
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
5712
5720
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
5713
5721
|
# defined in the transition route groups with intent specified. *
|
5714
5722
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -6986,12 +6994,18 @@ module Google
|
|
6986
6994
|
class GoogleCloudDialogflowCxV3SearchConfig
|
6987
6995
|
include Google::Apis::Core::Hashable
|
6988
6996
|
|
6989
|
-
# Optional. Boosting configuration for the datastores.
|
6997
|
+
# Optional. Boosting configuration for the datastores. Maps from datastore name
|
6998
|
+
# to their boost configuration. Do not specify more than one BoostSpecs for each
|
6999
|
+
# datastore name. If multiple BoostSpecs are provided for the same datastore
|
7000
|
+
# name, the behavior is undefined.
|
6990
7001
|
# Corresponds to the JSON property `boostSpecs`
|
6991
7002
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3BoostSpecs>]
|
6992
7003
|
attr_accessor :boost_specs
|
6993
7004
|
|
6994
|
-
# Optional. Filter configuration for the datastores.
|
7005
|
+
# Optional. Filter configuration for the datastores. Maps from datastore name to
|
7006
|
+
# the filter expression for that datastore. Do not specify more than one
|
7007
|
+
# FilterSpecs for each datastore name. If multiple FilterSpecs are provided for
|
7008
|
+
# the same datastore name, the behavior is undefined.
|
6995
7009
|
# Corresponds to the JSON property `filterSpecs`
|
6996
7010
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FilterSpecs>]
|
6997
7011
|
attr_accessor :filter_specs
|
@@ -8555,7 +8569,7 @@ module Google
|
|
8555
8569
|
# @return [String]
|
8556
8570
|
attr_accessor :client_id
|
8557
8571
|
|
8558
|
-
#
|
8572
|
+
# Optional. The client secret provided by the 3rd party platform.
|
8559
8573
|
# Corresponds to the JSON property `clientSecret`
|
8560
8574
|
# @return [String]
|
8561
8575
|
attr_accessor :client_secret
|
@@ -9069,8 +9083,8 @@ module Google
|
|
9069
9083
|
# @return [String]
|
9070
9084
|
attr_accessor :no_speech_timeout
|
9071
9085
|
|
9072
|
-
# Use timeout based endpointing, interpreting endpointer
|
9073
|
-
# timeout value.
|
9086
|
+
# Use timeout based endpointing, interpreting endpointer sensitivity as seconds
|
9087
|
+
# of timeout value.
|
9074
9088
|
# Corresponds to the JSON property `useTimeoutBasedEndpointing`
|
9075
9089
|
# @return [Boolean]
|
9076
9090
|
attr_accessor :use_timeout_based_endpointing
|
@@ -9442,6 +9456,13 @@ module Google
|
|
9442
9456
|
# @return [String]
|
9443
9457
|
attr_accessor :data_store_type
|
9444
9458
|
|
9459
|
+
# The document processing mode for the data store connection. Should only be set
|
9460
|
+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
|
9461
|
+
# DOCUMENTS, as this is the legacy mode.
|
9462
|
+
# Corresponds to the JSON property `documentProcessingMode`
|
9463
|
+
# @return [String]
|
9464
|
+
attr_accessor :document_processing_mode
|
9465
|
+
|
9445
9466
|
def initialize(**args)
|
9446
9467
|
update!(**args)
|
9447
9468
|
end
|
@@ -9450,6 +9471,7 @@ module Google
|
|
9450
9471
|
def update!(**args)
|
9451
9472
|
@data_store = args[:data_store] if args.key?(:data_store)
|
9452
9473
|
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
|
9474
|
+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
|
9453
9475
|
end
|
9454
9476
|
end
|
9455
9477
|
|
@@ -11029,7 +11051,7 @@ module Google
|
|
11029
11051
|
|
11030
11052
|
# A list of transitions for the transition rules of this page. They route the
|
11031
11053
|
# conversation to another page in the same flow, or another flow. When we are in
|
11032
|
-
# a certain page, the TransitionRoutes are
|
11054
|
+
# a certain page, the TransitionRoutes are evaluated in the following order: *
|
11033
11055
|
# TransitionRoutes defined in the page with intent specified. * TransitionRoutes
|
11034
11056
|
# defined in the transition route groups with intent specified. *
|
11035
11057
|
# TransitionRoutes defined in flow with intent specified. * TransitionRoutes
|
@@ -12380,7 +12402,7 @@ module Google
|
|
12380
12402
|
# @return [String]
|
12381
12403
|
attr_accessor :client_id
|
12382
12404
|
|
12383
|
-
#
|
12405
|
+
# Optional. The client secret provided by the 3rd party platform.
|
12384
12406
|
# Corresponds to the JSON property `clientSecret`
|
12385
12407
|
# @return [String]
|
12386
12408
|
attr_accessor :client_secret
|
@@ -13574,6 +13596,25 @@ module Google
|
|
13574
13596
|
end
|
13575
13597
|
end
|
13576
13598
|
|
13599
|
+
# Suggestion generated using free form generator.
|
13600
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
13601
|
+
include Google::Apis::Core::Hashable
|
13602
|
+
|
13603
|
+
# Required. Free form suggestion.
|
13604
|
+
# Corresponds to the JSON property `response`
|
13605
|
+
# @return [String]
|
13606
|
+
attr_accessor :response
|
13607
|
+
|
13608
|
+
def initialize(**args)
|
13609
|
+
update!(**args)
|
13610
|
+
end
|
13611
|
+
|
13612
|
+
# Update properties of this object
|
13613
|
+
def update!(**args)
|
13614
|
+
@response = args[:response] if args.key?(:response)
|
13615
|
+
end
|
13616
|
+
end
|
13617
|
+
|
13577
13618
|
# Google Cloud Storage location for the output.
|
13578
13619
|
class GoogleCloudDialogflowV2GcsDestination
|
13579
13620
|
include Google::Apis::Core::Hashable
|
@@ -13595,6 +13636,90 @@ module Google
|
|
13595
13636
|
end
|
13596
13637
|
end
|
13597
13638
|
|
13639
|
+
# The response message for Conversations.GenerateSuggestions.
|
13640
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
13641
|
+
include Google::Apis::Core::Hashable
|
13642
|
+
|
13643
|
+
# The answers generated for the conversation based on context.
|
13644
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
13645
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
13646
|
+
attr_accessor :generator_suggestion_answers
|
13647
|
+
|
13648
|
+
# The name of the latest conversation message used as context for compiling
|
13649
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
13650
|
+
# Corresponds to the JSON property `latestMessage`
|
13651
|
+
# @return [String]
|
13652
|
+
attr_accessor :latest_message
|
13653
|
+
|
13654
|
+
def initialize(**args)
|
13655
|
+
update!(**args)
|
13656
|
+
end
|
13657
|
+
|
13658
|
+
# Update properties of this object
|
13659
|
+
def update!(**args)
|
13660
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
13661
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
13662
|
+
end
|
13663
|
+
end
|
13664
|
+
|
13665
|
+
# A GeneratorSuggestion answer.
|
13666
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
13667
|
+
include Google::Apis::Core::Hashable
|
13668
|
+
|
13669
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
13670
|
+
# provide suggestion feedback.
|
13671
|
+
# Corresponds to the JSON property `answerRecord`
|
13672
|
+
# @return [String]
|
13673
|
+
attr_accessor :answer_record
|
13674
|
+
|
13675
|
+
# Suggestion generated using a Generator.
|
13676
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
13677
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GeneratorSuggestion]
|
13678
|
+
attr_accessor :generator_suggestion
|
13679
|
+
|
13680
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
13681
|
+
# locations//generators/`.
|
13682
|
+
# Corresponds to the JSON property `sourceGenerator`
|
13683
|
+
# @return [String]
|
13684
|
+
attr_accessor :source_generator
|
13685
|
+
|
13686
|
+
def initialize(**args)
|
13687
|
+
update!(**args)
|
13688
|
+
end
|
13689
|
+
|
13690
|
+
# Update properties of this object
|
13691
|
+
def update!(**args)
|
13692
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
13693
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
13694
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
13695
|
+
end
|
13696
|
+
end
|
13697
|
+
|
13698
|
+
# Suggestion generated using a Generator.
|
13699
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
13700
|
+
include Google::Apis::Core::Hashable
|
13701
|
+
|
13702
|
+
# Suggestion generated using free form generator.
|
13703
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
13704
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2FreeFormSuggestion]
|
13705
|
+
attr_accessor :free_form_suggestion
|
13706
|
+
|
13707
|
+
# Suggested summary of the conversation.
|
13708
|
+
# Corresponds to the JSON property `summarySuggestion`
|
13709
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestion]
|
13710
|
+
attr_accessor :summary_suggestion
|
13711
|
+
|
13712
|
+
def initialize(**args)
|
13713
|
+
update!(**args)
|
13714
|
+
end
|
13715
|
+
|
13716
|
+
# Update properties of this object
|
13717
|
+
def update!(**args)
|
13718
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
13719
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
13720
|
+
end
|
13721
|
+
end
|
13722
|
+
|
13598
13723
|
# Represents a notification sent to Cloud Pub/Sub subscribers for human agent
|
13599
13724
|
# assistant events in a specific conversation.
|
13600
13725
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
@@ -15250,7 +15375,8 @@ module Google
|
|
15250
15375
|
# @return [String]
|
15251
15376
|
attr_accessor :participant_role
|
15252
15377
|
|
15253
|
-
# Optional. The time when the message was sent.
|
15378
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
15379
|
+
# time when an utterance started.
|
15254
15380
|
# Corresponds to the JSON property `sendTime`
|
15255
15381
|
# @return [String]
|
15256
15382
|
attr_accessor :send_time
|
@@ -15996,6 +16122,11 @@ module Google
|
|
15996
16122
|
# @return [Google::Apis::DialogflowV3::GoogleRpcStatus]
|
15997
16123
|
attr_accessor :error
|
15998
16124
|
|
16125
|
+
# The response message for Conversations.GenerateSuggestions.
|
16126
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
16127
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponse]
|
16128
|
+
attr_accessor :generate_suggestions_response
|
16129
|
+
|
15999
16130
|
# The response message for Participants.SuggestArticles.
|
16000
16131
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
16001
16132
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestArticlesResponse]
|
@@ -16023,6 +16154,7 @@ module Google
|
|
16023
16154
|
# Update properties of this object
|
16024
16155
|
def update!(**args)
|
16025
16156
|
@error = args[:error] if args.key?(:error)
|
16157
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
16026
16158
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
16027
16159
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
16028
16160
|
@suggest_knowledge_assist_response = args[:suggest_knowledge_assist_response] if args.key?(:suggest_knowledge_assist_response)
|
@@ -16030,6 +16162,50 @@ module Google
|
|
16030
16162
|
end
|
16031
16163
|
end
|
16032
16164
|
|
16165
|
+
# Suggested summary of the conversation.
|
16166
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
16167
|
+
include Google::Apis::Core::Hashable
|
16168
|
+
|
16169
|
+
# Required. All the parts of generated summary.
|
16170
|
+
# Corresponds to the JSON property `summarySections`
|
16171
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestionSummarySection>]
|
16172
|
+
attr_accessor :summary_sections
|
16173
|
+
|
16174
|
+
def initialize(**args)
|
16175
|
+
update!(**args)
|
16176
|
+
end
|
16177
|
+
|
16178
|
+
# Update properties of this object
|
16179
|
+
def update!(**args)
|
16180
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
16181
|
+
end
|
16182
|
+
end
|
16183
|
+
|
16184
|
+
# A component of the generated summary.
|
16185
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
16186
|
+
include Google::Apis::Core::Hashable
|
16187
|
+
|
16188
|
+
# Required. Name of the section.
|
16189
|
+
# Corresponds to the JSON property `section`
|
16190
|
+
# @return [String]
|
16191
|
+
attr_accessor :section
|
16192
|
+
|
16193
|
+
# Required. Summary text for the section.
|
16194
|
+
# Corresponds to the JSON property `summary`
|
16195
|
+
# @return [String]
|
16196
|
+
attr_accessor :summary
|
16197
|
+
|
16198
|
+
def initialize(**args)
|
16199
|
+
update!(**args)
|
16200
|
+
end
|
16201
|
+
|
16202
|
+
# Update properties of this object
|
16203
|
+
def update!(**args)
|
16204
|
+
@section = args[:section] if args.key?(:section)
|
16205
|
+
@summary = args[:summary] if args.key?(:summary)
|
16206
|
+
end
|
16207
|
+
end
|
16208
|
+
|
16033
16209
|
# Metadata for a ConversationModels.UndeployConversationModel operation.
|
16034
16210
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
16035
16211
|
include Google::Apis::Core::Hashable
|
@@ -16780,6 +16956,25 @@ module Google
|
|
16780
16956
|
end
|
16781
16957
|
end
|
16782
16958
|
|
16959
|
+
# Suggestion generated using free form generator.
|
16960
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
16961
|
+
include Google::Apis::Core::Hashable
|
16962
|
+
|
16963
|
+
# Required. Free form suggestion.
|
16964
|
+
# Corresponds to the JSON property `response`
|
16965
|
+
# @return [String]
|
16966
|
+
attr_accessor :response
|
16967
|
+
|
16968
|
+
def initialize(**args)
|
16969
|
+
update!(**args)
|
16970
|
+
end
|
16971
|
+
|
16972
|
+
# Update properties of this object
|
16973
|
+
def update!(**args)
|
16974
|
+
@response = args[:response] if args.key?(:response)
|
16975
|
+
end
|
16976
|
+
end
|
16977
|
+
|
16783
16978
|
# Google Cloud Storage location for the output.
|
16784
16979
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
16785
16980
|
include Google::Apis::Core::Hashable
|
@@ -16801,6 +16996,90 @@ module Google
|
|
16801
16996
|
end
|
16802
16997
|
end
|
16803
16998
|
|
16999
|
+
# The response message for Conversations.GenerateSuggestions.
|
17000
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
17001
|
+
include Google::Apis::Core::Hashable
|
17002
|
+
|
17003
|
+
# The answers generated for the conversation based on context.
|
17004
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
17005
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
17006
|
+
attr_accessor :generator_suggestion_answers
|
17007
|
+
|
17008
|
+
# The name of the latest conversation message used as context for compiling
|
17009
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
17010
|
+
# Corresponds to the JSON property `latestMessage`
|
17011
|
+
# @return [String]
|
17012
|
+
attr_accessor :latest_message
|
17013
|
+
|
17014
|
+
def initialize(**args)
|
17015
|
+
update!(**args)
|
17016
|
+
end
|
17017
|
+
|
17018
|
+
# Update properties of this object
|
17019
|
+
def update!(**args)
|
17020
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
17021
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
17022
|
+
end
|
17023
|
+
end
|
17024
|
+
|
17025
|
+
# A GeneratorSuggestion answer.
|
17026
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
17027
|
+
include Google::Apis::Core::Hashable
|
17028
|
+
|
17029
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
17030
|
+
# provide suggestion feedback.
|
17031
|
+
# Corresponds to the JSON property `answerRecord`
|
17032
|
+
# @return [String]
|
17033
|
+
attr_accessor :answer_record
|
17034
|
+
|
17035
|
+
# Suggestion generated using a Generator.
|
17036
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
17037
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GeneratorSuggestion]
|
17038
|
+
attr_accessor :generator_suggestion
|
17039
|
+
|
17040
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
17041
|
+
# locations//generators/`.
|
17042
|
+
# Corresponds to the JSON property `sourceGenerator`
|
17043
|
+
# @return [String]
|
17044
|
+
attr_accessor :source_generator
|
17045
|
+
|
17046
|
+
def initialize(**args)
|
17047
|
+
update!(**args)
|
17048
|
+
end
|
17049
|
+
|
17050
|
+
# Update properties of this object
|
17051
|
+
def update!(**args)
|
17052
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
17053
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
17054
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
17055
|
+
end
|
17056
|
+
end
|
17057
|
+
|
17058
|
+
# Suggestion generated using a Generator.
|
17059
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
17060
|
+
include Google::Apis::Core::Hashable
|
17061
|
+
|
17062
|
+
# Suggestion generated using free form generator.
|
17063
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
17064
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1FreeFormSuggestion]
|
17065
|
+
attr_accessor :free_form_suggestion
|
17066
|
+
|
17067
|
+
# Suggested summary of the conversation.
|
17068
|
+
# Corresponds to the JSON property `summarySuggestion`
|
17069
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestion]
|
17070
|
+
attr_accessor :summary_suggestion
|
17071
|
+
|
17072
|
+
def initialize(**args)
|
17073
|
+
update!(**args)
|
17074
|
+
end
|
17075
|
+
|
17076
|
+
# Update properties of this object
|
17077
|
+
def update!(**args)
|
17078
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
17079
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
17080
|
+
end
|
17081
|
+
end
|
17082
|
+
|
16804
17083
|
# Output only. Represents a notification sent to Pub/Sub subscribers for agent
|
16805
17084
|
# assistant events in a specific conversation.
|
16806
17085
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
@@ -18964,7 +19243,8 @@ module Google
|
|
18964
19243
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ResponseMessage>]
|
18965
19244
|
attr_accessor :response_messages
|
18966
19245
|
|
18967
|
-
# Optional. The time when the message was sent.
|
19246
|
+
# Optional. The time when the message was sent. For voice messages, this is the
|
19247
|
+
# time when an utterance started.
|
18968
19248
|
# Corresponds to the JSON property `sendTime`
|
18969
19249
|
# @return [String]
|
18970
19250
|
attr_accessor :send_time
|
@@ -19251,9 +19531,9 @@ module Google
|
|
19251
19531
|
# Dialogflow only uses this to determine which conversations were handed off to
|
19252
19532
|
# a human agent for measurement purposes. What else to do with this signal is up
|
19253
19533
|
# to you and your handoff procedures. You may set this, for example: * In the
|
19254
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
19255
|
-
# extremely wrong in the conversation. * In a webhook response
|
19256
|
-
# determine that the customer issue can only be handled by a human.
|
19534
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
19535
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
19536
|
+
# when you determine that the customer issue can only be handled by a human.
|
19257
19537
|
# Corresponds to the JSON property `liveAgentHandoff`
|
19258
19538
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff]
|
19259
19539
|
attr_accessor :live_agent_handoff
|
@@ -19312,9 +19592,9 @@ module Google
|
|
19312
19592
|
# Dialogflow only uses this to determine which conversations were handed off to
|
19313
19593
|
# a human agent for measurement purposes. What else to do with this signal is up
|
19314
19594
|
# to you and your handoff procedures. You may set this, for example: * In the
|
19315
|
-
# entry fulfillment of a CX Page if entering the page indicates
|
19316
|
-
# extremely wrong in the conversation. * In a webhook response
|
19317
|
-
# determine that the customer issue can only be handled by a human.
|
19595
|
+
# entry fulfillment of a Dialogflow CX Page if entering the page indicates
|
19596
|
+
# something went extremely wrong in the conversation. * In a webhook response
|
19597
|
+
# when you determine that the customer issue can only be handled by a human.
|
19318
19598
|
class GoogleCloudDialogflowV2beta1ResponseMessageLiveAgentHandoff
|
19319
19599
|
include Google::Apis::Core::Hashable
|
19320
19600
|
|
@@ -19955,6 +20235,11 @@ module Google
|
|
19955
20235
|
# @return [Google::Apis::DialogflowV3::GoogleRpcStatus]
|
19956
20236
|
attr_accessor :error
|
19957
20237
|
|
20238
|
+
# The response message for Conversations.GenerateSuggestions.
|
20239
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
20240
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse]
|
20241
|
+
attr_accessor :generate_suggestions_response
|
20242
|
+
|
19958
20243
|
# The response message for Participants.SuggestArticles.
|
19959
20244
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
19960
20245
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestArticlesResponse]
|
@@ -19992,6 +20277,7 @@ module Google
|
|
19992
20277
|
# Update properties of this object
|
19993
20278
|
def update!(**args)
|
19994
20279
|
@error = args[:error] if args.key?(:error)
|
20280
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
19995
20281
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
19996
20282
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
19997
20283
|
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
@@ -20001,6 +20287,50 @@ module Google
|
|
20001
20287
|
end
|
20002
20288
|
end
|
20003
20289
|
|
20290
|
+
# Suggested summary of the conversation.
|
20291
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
20292
|
+
include Google::Apis::Core::Hashable
|
20293
|
+
|
20294
|
+
# Required. All the parts of generated summary.
|
20295
|
+
# Corresponds to the JSON property `summarySections`
|
20296
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection>]
|
20297
|
+
attr_accessor :summary_sections
|
20298
|
+
|
20299
|
+
def initialize(**args)
|
20300
|
+
update!(**args)
|
20301
|
+
end
|
20302
|
+
|
20303
|
+
# Update properties of this object
|
20304
|
+
def update!(**args)
|
20305
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
20306
|
+
end
|
20307
|
+
end
|
20308
|
+
|
20309
|
+
# A component of the generated summary.
|
20310
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
20311
|
+
include Google::Apis::Core::Hashable
|
20312
|
+
|
20313
|
+
# Required. Name of the section.
|
20314
|
+
# Corresponds to the JSON property `section`
|
20315
|
+
# @return [String]
|
20316
|
+
attr_accessor :section
|
20317
|
+
|
20318
|
+
# Required. Summary text for the section.
|
20319
|
+
# Corresponds to the JSON property `summary`
|
20320
|
+
# @return [String]
|
20321
|
+
attr_accessor :summary
|
20322
|
+
|
20323
|
+
def initialize(**args)
|
20324
|
+
update!(**args)
|
20325
|
+
end
|
20326
|
+
|
20327
|
+
# Update properties of this object
|
20328
|
+
def update!(**args)
|
20329
|
+
@section = args[:section] if args.key?(:section)
|
20330
|
+
@summary = args[:summary] if args.key?(:summary)
|
20331
|
+
end
|
20332
|
+
end
|
20333
|
+
|
20004
20334
|
# A wrapper of repeated TelephonyDtmf digits.
|
20005
20335
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
20006
20336
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.104.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2188,12 +2188,36 @@ module Google
|
|
2188
2188
|
include Google::Apis::Core::JsonObjectSupport
|
2189
2189
|
end
|
2190
2190
|
|
2191
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
2192
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
|
+
|
2194
|
+
include Google::Apis::Core::JsonObjectSupport
|
2195
|
+
end
|
2196
|
+
|
2191
2197
|
class GoogleCloudDialogflowV2GcsDestination
|
2192
2198
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
2199
|
|
2194
2200
|
include Google::Apis::Core::JsonObjectSupport
|
2195
2201
|
end
|
2196
2202
|
|
2203
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
2204
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2205
|
+
|
2206
|
+
include Google::Apis::Core::JsonObjectSupport
|
2207
|
+
end
|
2208
|
+
|
2209
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
2210
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2211
|
+
|
2212
|
+
include Google::Apis::Core::JsonObjectSupport
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
2216
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2217
|
+
|
2218
|
+
include Google::Apis::Core::JsonObjectSupport
|
2219
|
+
end
|
2220
|
+
|
2197
2221
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
2198
2222
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2199
2223
|
|
@@ -2578,6 +2602,18 @@ module Google
|
|
2578
2602
|
include Google::Apis::Core::JsonObjectSupport
|
2579
2603
|
end
|
2580
2604
|
|
2605
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
2606
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2607
|
+
|
2608
|
+
include Google::Apis::Core::JsonObjectSupport
|
2609
|
+
end
|
2610
|
+
|
2611
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
2612
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2613
|
+
|
2614
|
+
include Google::Apis::Core::JsonObjectSupport
|
2615
|
+
end
|
2616
|
+
|
2581
2617
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
2582
2618
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2583
2619
|
|
@@ -2686,12 +2722,36 @@ module Google
|
|
2686
2722
|
include Google::Apis::Core::JsonObjectSupport
|
2687
2723
|
end
|
2688
2724
|
|
2725
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
2726
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2727
|
+
|
2728
|
+
include Google::Apis::Core::JsonObjectSupport
|
2729
|
+
end
|
2730
|
+
|
2689
2731
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
2690
2732
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2691
2733
|
|
2692
2734
|
include Google::Apis::Core::JsonObjectSupport
|
2693
2735
|
end
|
2694
2736
|
|
2737
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
2738
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2739
|
+
|
2740
|
+
include Google::Apis::Core::JsonObjectSupport
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
2744
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2745
|
+
|
2746
|
+
include Google::Apis::Core::JsonObjectSupport
|
2747
|
+
end
|
2748
|
+
|
2749
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
2750
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2751
|
+
|
2752
|
+
include Google::Apis::Core::JsonObjectSupport
|
2753
|
+
end
|
2754
|
+
|
2695
2755
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
2696
2756
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2697
2757
|
|
@@ -3202,6 +3262,18 @@ module Google
|
|
3202
3262
|
include Google::Apis::Core::JsonObjectSupport
|
3203
3263
|
end
|
3204
3264
|
|
3265
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
3266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3267
|
+
|
3268
|
+
include Google::Apis::Core::JsonObjectSupport
|
3269
|
+
end
|
3270
|
+
|
3271
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
3272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3273
|
+
|
3274
|
+
include Google::Apis::Core::JsonObjectSupport
|
3275
|
+
end
|
3276
|
+
|
3205
3277
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
3206
3278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3207
3279
|
|
@@ -3638,6 +3710,7 @@ module Google
|
|
3638
3710
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3639
3711
|
property :data_store, as: 'dataStore'
|
3640
3712
|
property :data_store_type, as: 'dataStoreType'
|
3713
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
3641
3714
|
end
|
3642
3715
|
end
|
3643
3716
|
|
@@ -5811,6 +5884,7 @@ module Google
|
|
5811
5884
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5812
5885
|
property :data_store, as: 'dataStore'
|
5813
5886
|
property :data_store_type, as: 'dataStoreType'
|
5887
|
+
property :document_processing_mode, as: 'documentProcessingMode'
|
5814
5888
|
end
|
5815
5889
|
end
|
5816
5890
|
|
@@ -6906,6 +6980,13 @@ module Google
|
|
6906
6980
|
end
|
6907
6981
|
end
|
6908
6982
|
|
6983
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
6984
|
+
# @private
|
6985
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6986
|
+
property :response, as: 'response'
|
6987
|
+
end
|
6988
|
+
end
|
6989
|
+
|
6909
6990
|
class GoogleCloudDialogflowV2GcsDestination
|
6910
6991
|
# @private
|
6911
6992
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6913,6 +6994,35 @@ module Google
|
|
6913
6994
|
end
|
6914
6995
|
end
|
6915
6996
|
|
6997
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
6998
|
+
# @private
|
6999
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7000
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
7001
|
+
|
7002
|
+
property :latest_message, as: 'latestMessage'
|
7003
|
+
end
|
7004
|
+
end
|
7005
|
+
|
7006
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
7007
|
+
# @private
|
7008
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7009
|
+
property :answer_record, as: 'answerRecord'
|
7010
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GeneratorSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GeneratorSuggestion::Representation
|
7011
|
+
|
7012
|
+
property :source_generator, as: 'sourceGenerator'
|
7013
|
+
end
|
7014
|
+
end
|
7015
|
+
|
7016
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
7017
|
+
# @private
|
7018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7019
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2FreeFormSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2FreeFormSuggestion::Representation
|
7020
|
+
|
7021
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestion::Representation
|
7022
|
+
|
7023
|
+
end
|
7024
|
+
end
|
7025
|
+
|
6916
7026
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
6917
7027
|
# @private
|
6918
7028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7579,6 +7689,8 @@ module Google
|
|
7579
7689
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7580
7690
|
property :error, as: 'error', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
|
7581
7691
|
|
7692
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2GenerateSuggestionsResponse::Representation
|
7693
|
+
|
7582
7694
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestArticlesResponse::Representation
|
7583
7695
|
|
7584
7696
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestFaqAnswersResponse::Representation
|
@@ -7590,6 +7702,22 @@ module Google
|
|
7590
7702
|
end
|
7591
7703
|
end
|
7592
7704
|
|
7705
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
7706
|
+
# @private
|
7707
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7708
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SummarySuggestionSummarySection::Representation
|
7709
|
+
|
7710
|
+
end
|
7711
|
+
end
|
7712
|
+
|
7713
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
7714
|
+
# @private
|
7715
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7716
|
+
property :section, as: 'section'
|
7717
|
+
property :summary, as: 'summary'
|
7718
|
+
end
|
7719
|
+
end
|
7720
|
+
|
7593
7721
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
7594
7722
|
# @private
|
7595
7723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7773,6 +7901,13 @@ module Google
|
|
7773
7901
|
end
|
7774
7902
|
end
|
7775
7903
|
|
7904
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
7905
|
+
# @private
|
7906
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7907
|
+
property :response, as: 'response'
|
7908
|
+
end
|
7909
|
+
end
|
7910
|
+
|
7776
7911
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
7777
7912
|
# @private
|
7778
7913
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7780,6 +7915,35 @@ module Google
|
|
7780
7915
|
end
|
7781
7916
|
end
|
7782
7917
|
|
7918
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
7919
|
+
# @private
|
7920
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7921
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
7922
|
+
|
7923
|
+
property :latest_message, as: 'latestMessage'
|
7924
|
+
end
|
7925
|
+
end
|
7926
|
+
|
7927
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
7928
|
+
# @private
|
7929
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7930
|
+
property :answer_record, as: 'answerRecord'
|
7931
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GeneratorSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GeneratorSuggestion::Representation
|
7932
|
+
|
7933
|
+
property :source_generator, as: 'sourceGenerator'
|
7934
|
+
end
|
7935
|
+
end
|
7936
|
+
|
7937
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
7938
|
+
# @private
|
7939
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7940
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1FreeFormSuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1FreeFormSuggestion::Representation
|
7941
|
+
|
7942
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestion::Representation
|
7943
|
+
|
7944
|
+
end
|
7945
|
+
end
|
7946
|
+
|
7783
7947
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
7784
7948
|
# @private
|
7785
7949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8657,6 +8821,8 @@ module Google
|
|
8657
8821
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8658
8822
|
property :error, as: 'error', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
|
8659
8823
|
|
8824
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse::Representation
|
8825
|
+
|
8660
8826
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestArticlesResponse::Representation
|
8661
8827
|
|
8662
8828
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
@@ -8672,6 +8838,22 @@ module Google
|
|
8672
8838
|
end
|
8673
8839
|
end
|
8674
8840
|
|
8841
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
8842
|
+
# @private
|
8843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8844
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection::Representation
|
8845
|
+
|
8846
|
+
end
|
8847
|
+
end
|
8848
|
+
|
8849
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
8850
|
+
# @private
|
8851
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8852
|
+
property :section, as: 'section'
|
8853
|
+
property :summary, as: 'summary'
|
8854
|
+
end
|
8855
|
+
end
|
8856
|
+
|
8675
8857
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
8676
8858
|
# @private
|
8677
8859
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.104.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.104.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Dialogflow API V3
|
79
79
|
test_files: []
|