google-apis-dialogflow_v3 0.123.0 → 0.125.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/dialogflow_v3/classes.rb +124 -0
- data/lib/google/apis/dialogflow_v3/gem_version.rb +3 -3
- data/lib/google/apis/dialogflow_v3/representations.rb +66 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: efbde813110755c0e07c5b6121f022c38a3c96c263f714576931f9bbe3b44477
|
|
4
|
+
data.tar.gz: 0db0657be1ea021a68aaa46ce2d6150d72af8e09364b7c8113db4f26ca7806e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dfa504cf54d47404d3a725fceffb98cc8d817ab2509027ab6f67df80b6a6ab30d36852e10d51c410bb687fe25d1f25fe10f658ef8d40b5617580cf3b34c5773
|
|
7
|
+
data.tar.gz: a13a73cd7223dcc82500642aa12ba8ebe4412f9f1eef7ce4848d5b17e1ed17de808411cf7d06cadc22bb757267dbf712b23a070312183892d227d32016ddd1b6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
|
2
2
|
|
|
3
|
+
### v0.125.0 (2026-06-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260616
|
|
6
|
+
|
|
7
|
+
### v0.124.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260604
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.123.0 (2026-05-24)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260518
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dialogflow/) may provide gu
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -15650,6 +15650,31 @@ module Google
|
|
|
15650
15650
|
end
|
|
15651
15651
|
end
|
|
15652
15652
|
|
|
15653
|
+
#
|
|
15654
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
15655
|
+
include Google::Apis::Core::Hashable
|
|
15656
|
+
|
|
15657
|
+
#
|
|
15658
|
+
# Corresponds to the JSON property `answerRecord`
|
|
15659
|
+
# @return [String]
|
|
15660
|
+
attr_accessor :answer_record
|
|
15661
|
+
|
|
15662
|
+
#
|
|
15663
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
15664
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery]
|
|
15665
|
+
attr_accessor :suggested_query
|
|
15666
|
+
|
|
15667
|
+
def initialize(**args)
|
|
15668
|
+
update!(**args)
|
|
15669
|
+
end
|
|
15670
|
+
|
|
15671
|
+
# Update properties of this object
|
|
15672
|
+
def update!(**args)
|
|
15673
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
15674
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
15675
|
+
end
|
|
15676
|
+
end
|
|
15677
|
+
|
|
15653
15678
|
#
|
|
15654
15679
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
15655
15680
|
include Google::Apis::Core::Hashable
|
|
@@ -15802,6 +15827,11 @@ module Google
|
|
|
15802
15827
|
# @return [String]
|
|
15803
15828
|
attr_accessor :query_text
|
|
15804
15829
|
|
|
15830
|
+
#
|
|
15831
|
+
# Corresponds to the JSON property `searchContexts`
|
|
15832
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
15833
|
+
attr_accessor :search_contexts
|
|
15834
|
+
|
|
15805
15835
|
def initialize(**args)
|
|
15806
15836
|
update!(**args)
|
|
15807
15837
|
end
|
|
@@ -15809,6 +15839,32 @@ module Google
|
|
|
15809
15839
|
# Update properties of this object
|
|
15810
15840
|
def update!(**args)
|
|
15811
15841
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
15842
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
15843
|
+
end
|
|
15844
|
+
end
|
|
15845
|
+
|
|
15846
|
+
#
|
|
15847
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
15848
|
+
include Google::Apis::Core::Hashable
|
|
15849
|
+
|
|
15850
|
+
#
|
|
15851
|
+
# Corresponds to the JSON property `key`
|
|
15852
|
+
# @return [String]
|
|
15853
|
+
attr_accessor :key
|
|
15854
|
+
|
|
15855
|
+
#
|
|
15856
|
+
# Corresponds to the JSON property `value`
|
|
15857
|
+
# @return [String]
|
|
15858
|
+
attr_accessor :value
|
|
15859
|
+
|
|
15860
|
+
def initialize(**args)
|
|
15861
|
+
update!(**args)
|
|
15862
|
+
end
|
|
15863
|
+
|
|
15864
|
+
# Update properties of this object
|
|
15865
|
+
def update!(**args)
|
|
15866
|
+
@key = args[:key] if args.key?(:key)
|
|
15867
|
+
@value = args[:value] if args.key?(:value)
|
|
15812
15868
|
end
|
|
15813
15869
|
end
|
|
15814
15870
|
|
|
@@ -16684,6 +16740,11 @@ module Google
|
|
|
16684
16740
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
16685
16741
|
include Google::Apis::Core::Hashable
|
|
16686
16742
|
|
|
16743
|
+
#
|
|
16744
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
16745
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
16746
|
+
attr_accessor :additional_suggested_query_results
|
|
16747
|
+
|
|
16687
16748
|
#
|
|
16688
16749
|
# Corresponds to the JSON property `contextSize`
|
|
16689
16750
|
# @return [Fixnum]
|
|
@@ -16705,6 +16766,7 @@ module Google
|
|
|
16705
16766
|
|
|
16706
16767
|
# Update properties of this object
|
|
16707
16768
|
def update!(**args)
|
|
16769
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
16708
16770
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
16709
16771
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
16710
16772
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -19877,6 +19939,31 @@ module Google
|
|
|
19877
19939
|
end
|
|
19878
19940
|
end
|
|
19879
19941
|
|
|
19942
|
+
#
|
|
19943
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
19944
|
+
include Google::Apis::Core::Hashable
|
|
19945
|
+
|
|
19946
|
+
#
|
|
19947
|
+
# Corresponds to the JSON property `answerRecord`
|
|
19948
|
+
# @return [String]
|
|
19949
|
+
attr_accessor :answer_record
|
|
19950
|
+
|
|
19951
|
+
#
|
|
19952
|
+
# Corresponds to the JSON property `suggestedQuery`
|
|
19953
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery]
|
|
19954
|
+
attr_accessor :suggested_query
|
|
19955
|
+
|
|
19956
|
+
def initialize(**args)
|
|
19957
|
+
update!(**args)
|
|
19958
|
+
end
|
|
19959
|
+
|
|
19960
|
+
# Update properties of this object
|
|
19961
|
+
def update!(**args)
|
|
19962
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
|
19963
|
+
@suggested_query = args[:suggested_query] if args.key?(:suggested_query)
|
|
19964
|
+
end
|
|
19965
|
+
end
|
|
19966
|
+
|
|
19880
19967
|
#
|
|
19881
19968
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
19882
19969
|
include Google::Apis::Core::Hashable
|
|
@@ -20029,6 +20116,11 @@ module Google
|
|
|
20029
20116
|
# @return [String]
|
|
20030
20117
|
attr_accessor :query_text
|
|
20031
20118
|
|
|
20119
|
+
#
|
|
20120
|
+
# Corresponds to the JSON property `searchContexts`
|
|
20121
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext>]
|
|
20122
|
+
attr_accessor :search_contexts
|
|
20123
|
+
|
|
20032
20124
|
def initialize(**args)
|
|
20033
20125
|
update!(**args)
|
|
20034
20126
|
end
|
|
@@ -20036,6 +20128,32 @@ module Google
|
|
|
20036
20128
|
# Update properties of this object
|
|
20037
20129
|
def update!(**args)
|
|
20038
20130
|
@query_text = args[:query_text] if args.key?(:query_text)
|
|
20131
|
+
@search_contexts = args[:search_contexts] if args.key?(:search_contexts)
|
|
20132
|
+
end
|
|
20133
|
+
end
|
|
20134
|
+
|
|
20135
|
+
#
|
|
20136
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
20137
|
+
include Google::Apis::Core::Hashable
|
|
20138
|
+
|
|
20139
|
+
#
|
|
20140
|
+
# Corresponds to the JSON property `key`
|
|
20141
|
+
# @return [String]
|
|
20142
|
+
attr_accessor :key
|
|
20143
|
+
|
|
20144
|
+
#
|
|
20145
|
+
# Corresponds to the JSON property `value`
|
|
20146
|
+
# @return [String]
|
|
20147
|
+
attr_accessor :value
|
|
20148
|
+
|
|
20149
|
+
def initialize(**args)
|
|
20150
|
+
update!(**args)
|
|
20151
|
+
end
|
|
20152
|
+
|
|
20153
|
+
# Update properties of this object
|
|
20154
|
+
def update!(**args)
|
|
20155
|
+
@key = args[:key] if args.key?(:key)
|
|
20156
|
+
@value = args[:value] if args.key?(:value)
|
|
20039
20157
|
end
|
|
20040
20158
|
end
|
|
20041
20159
|
|
|
@@ -21124,6 +21242,11 @@ module Google
|
|
|
21124
21242
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
21125
21243
|
include Google::Apis::Core::Hashable
|
|
21126
21244
|
|
|
21245
|
+
#
|
|
21246
|
+
# Corresponds to the JSON property `additionalSuggestedQueryResults`
|
|
21247
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult>]
|
|
21248
|
+
attr_accessor :additional_suggested_query_results
|
|
21249
|
+
|
|
21127
21250
|
#
|
|
21128
21251
|
# Corresponds to the JSON property `contextSize`
|
|
21129
21252
|
# @return [Fixnum]
|
|
@@ -21145,6 +21268,7 @@ module Google
|
|
|
21145
21268
|
|
|
21146
21269
|
# Update properties of this object
|
|
21147
21270
|
def update!(**args)
|
|
21271
|
+
@additional_suggested_query_results = args[:additional_suggested_query_results] if args.key?(:additional_suggested_query_results)
|
|
21148
21272
|
@context_size = args[:context_size] if args.key?(:context_size)
|
|
21149
21273
|
@knowledge_assist_answer = args[:knowledge_assist_answer] if args.key?(:knowledge_assist_answer)
|
|
21150
21274
|
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
|
@@ -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.125.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260616"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2938,6 +2938,12 @@ module Google
|
|
|
2938
2938
|
include Google::Apis::Core::JsonObjectSupport
|
|
2939
2939
|
end
|
|
2940
2940
|
|
|
2941
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
2942
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2943
|
+
|
|
2944
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2945
|
+
end
|
|
2946
|
+
|
|
2941
2947
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
2942
2948
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2943
2949
|
|
|
@@ -2974,6 +2980,12 @@ module Google
|
|
|
2974
2980
|
include Google::Apis::Core::JsonObjectSupport
|
|
2975
2981
|
end
|
|
2976
2982
|
|
|
2983
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
2984
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2985
|
+
|
|
2986
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2987
|
+
end
|
|
2988
|
+
|
|
2977
2989
|
class GoogleCloudDialogflowV2KnowledgeAssistDebugInfo
|
|
2978
2990
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2979
2991
|
|
|
@@ -3682,6 +3694,12 @@ module Google
|
|
|
3682
3694
|
include Google::Apis::Core::JsonObjectSupport
|
|
3683
3695
|
end
|
|
3684
3696
|
|
|
3697
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
3698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3699
|
+
|
|
3700
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3701
|
+
end
|
|
3702
|
+
|
|
3685
3703
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
3686
3704
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3687
3705
|
|
|
@@ -3718,6 +3736,12 @@ module Google
|
|
|
3718
3736
|
include Google::Apis::Core::JsonObjectSupport
|
|
3719
3737
|
end
|
|
3720
3738
|
|
|
3739
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
3740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3741
|
+
|
|
3742
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3743
|
+
end
|
|
3744
|
+
|
|
3721
3745
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistDebugInfo
|
|
3722
3746
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3723
3747
|
|
|
@@ -8930,6 +8954,15 @@ module Google
|
|
|
8930
8954
|
end
|
|
8931
8955
|
end
|
|
8932
8956
|
|
|
8957
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
8958
|
+
# @private
|
|
8959
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8960
|
+
property :answer_record, as: 'answerRecord'
|
|
8961
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
8962
|
+
|
|
8963
|
+
end
|
|
8964
|
+
end
|
|
8965
|
+
|
|
8933
8966
|
class GoogleCloudDialogflowV2KnowledgeAssistAnswerKnowledgeAnswer
|
|
8934
8967
|
# @private
|
|
8935
8968
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8983,6 +9016,16 @@ module Google
|
|
|
8983
9016
|
# @private
|
|
8984
9017
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8985
9018
|
property :query_text, as: 'queryText'
|
|
9019
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
9020
|
+
|
|
9021
|
+
end
|
|
9022
|
+
end
|
|
9023
|
+
|
|
9024
|
+
class GoogleCloudDialogflowV2KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
9025
|
+
# @private
|
|
9026
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9027
|
+
property :key, as: 'key'
|
|
9028
|
+
property :value, as: 'value'
|
|
8986
9029
|
end
|
|
8987
9030
|
end
|
|
8988
9031
|
|
|
@@ -9225,6 +9268,8 @@ module Google
|
|
|
9225
9268
|
class GoogleCloudDialogflowV2SuggestKnowledgeAssistResponse
|
|
9226
9269
|
# @private
|
|
9227
9270
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
9271
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
9272
|
+
|
|
9228
9273
|
property :context_size, as: 'contextSize'
|
|
9229
9274
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2KnowledgeAssistAnswer::Representation
|
|
9230
9275
|
|
|
@@ -10239,6 +10284,15 @@ module Google
|
|
|
10239
10284
|
end
|
|
10240
10285
|
end
|
|
10241
10286
|
|
|
10287
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult
|
|
10288
|
+
# @private
|
|
10289
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10290
|
+
property :answer_record, as: 'answerRecord'
|
|
10291
|
+
property :suggested_query, as: 'suggestedQuery', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuery::Representation
|
|
10292
|
+
|
|
10293
|
+
end
|
|
10294
|
+
end
|
|
10295
|
+
|
|
10242
10296
|
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer
|
|
10243
10297
|
# @private
|
|
10244
10298
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -10292,6 +10346,16 @@ module Google
|
|
|
10292
10346
|
# @private
|
|
10293
10347
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10294
10348
|
property :query_text, as: 'queryText'
|
|
10349
|
+
collection :search_contexts, as: 'searchContexts', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext::Representation
|
|
10350
|
+
|
|
10351
|
+
end
|
|
10352
|
+
end
|
|
10353
|
+
|
|
10354
|
+
class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerSuggestedQuerySearchContext
|
|
10355
|
+
# @private
|
|
10356
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10357
|
+
property :key, as: 'key'
|
|
10358
|
+
property :value, as: 'value'
|
|
10295
10359
|
end
|
|
10296
10360
|
end
|
|
10297
10361
|
|
|
@@ -10606,6 +10670,8 @@ module Google
|
|
|
10606
10670
|
class GoogleCloudDialogflowV2beta1SuggestKnowledgeAssistResponse
|
|
10607
10671
|
# @private
|
|
10608
10672
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10673
|
+
collection :additional_suggested_query_results, as: 'additionalSuggestedQueryResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerAdditionalSuggestedQueryResult::Representation
|
|
10674
|
+
|
|
10609
10675
|
property :context_size, as: 'contextSize'
|
|
10610
10676
|
property :knowledge_assist_answer, as: 'knowledgeAssistAnswer', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswer::Representation
|
|
10611
10677
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.125.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.125.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|