google-apis-dialogflow_v3 0.47.0 → 0.48.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1de6305d3680c61ca65a44f6e836199f133891d089ffeb05986bf8629236ed03
|
4
|
+
data.tar.gz: 89f4f3ebaab2d4c0fe73631c9309289206e4ad76e3d112685a8bdf7a9f9560b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c199fae1f483128d1fd58e6ddb2feb550158d1748eebc087d4e632d643e429f5617b42a1df883aa5664f7a43236c1d09f2861bdf2acdf788d04038b33bce0bb
|
7
|
+
data.tar.gz: 68dee3b64f13a80cd408fec2f14bfc0a7c73fbe1a81bb1aec0563fdb43785a5415300f40827c3e92f0708ca084adbbc753c6847b95587fe782a9aa0802950e03
|
data/CHANGELOG.md
CHANGED
@@ -541,6 +541,27 @@ module Google
|
|
541
541
|
end
|
542
542
|
end
|
543
543
|
|
544
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
545
|
+
# converted to JSON and exported to BigQuery.
|
546
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
547
|
+
include Google::Apis::Core::Hashable
|
548
|
+
|
549
|
+
# Collection of all signals that were extracted for a single turn of the
|
550
|
+
# conversation.
|
551
|
+
# Corresponds to the JSON property `turnSignals`
|
552
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals]
|
553
|
+
attr_accessor :turn_signals
|
554
|
+
|
555
|
+
def initialize(**args)
|
556
|
+
update!(**args)
|
557
|
+
end
|
558
|
+
|
559
|
+
# Update properties of this object
|
560
|
+
def update!(**args)
|
561
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
562
|
+
end
|
563
|
+
end
|
564
|
+
|
544
565
|
# One interaction between a human and virtual agent. The human provides some
|
545
566
|
# input and the virtual agent provides a response.
|
546
567
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
@@ -5784,6 +5805,74 @@ module Google
|
|
5784
5805
|
end
|
5785
5806
|
end
|
5786
5807
|
|
5808
|
+
# Collection of all signals that were extracted for a single turn of the
|
5809
|
+
# conversation.
|
5810
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
5811
|
+
include Google::Apis::Core::Hashable
|
5812
|
+
|
5813
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
5814
|
+
# Corresponds to the JSON property `agentEscalated`
|
5815
|
+
# @return [Boolean]
|
5816
|
+
attr_accessor :agent_escalated
|
5817
|
+
alias_method :agent_escalated?, :agent_escalated
|
5818
|
+
|
5819
|
+
# Whether user was using DTMF input.
|
5820
|
+
# Corresponds to the JSON property `dtmfUsed`
|
5821
|
+
# @return [Boolean]
|
5822
|
+
attr_accessor :dtmf_used
|
5823
|
+
alias_method :dtmf_used?, :dtmf_used
|
5824
|
+
|
5825
|
+
# Failure reasons of the turn.
|
5826
|
+
# Corresponds to the JSON property `failureReasons`
|
5827
|
+
# @return [Array<String>]
|
5828
|
+
attr_accessor :failure_reasons
|
5829
|
+
|
5830
|
+
# Whether NLU predicted NO_MATCH.
|
5831
|
+
# Corresponds to the JSON property `noMatch`
|
5832
|
+
# @return [Boolean]
|
5833
|
+
attr_accessor :no_match
|
5834
|
+
alias_method :no_match?, :no_match
|
5835
|
+
|
5836
|
+
# Whether user provided no input.
|
5837
|
+
# Corresponds to the JSON property `noUserInput`
|
5838
|
+
# @return [Boolean]
|
5839
|
+
attr_accessor :no_user_input
|
5840
|
+
alias_method :no_user_input?, :no_user_input
|
5841
|
+
|
5842
|
+
# Whether turn resulted in End Session page.
|
5843
|
+
# Corresponds to the JSON property `reachedEndPage`
|
5844
|
+
# @return [Boolean]
|
5845
|
+
attr_accessor :reached_end_page
|
5846
|
+
alias_method :reached_end_page?, :reached_end_page
|
5847
|
+
|
5848
|
+
# Whether user was specifically asking for a live agent.
|
5849
|
+
# Corresponds to the JSON property `userEscalated`
|
5850
|
+
# @return [Boolean]
|
5851
|
+
attr_accessor :user_escalated
|
5852
|
+
alias_method :user_escalated?, :user_escalated
|
5853
|
+
|
5854
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
5855
|
+
# Corresponds to the JSON property `webhookStatuses`
|
5856
|
+
# @return [Array<String>]
|
5857
|
+
attr_accessor :webhook_statuses
|
5858
|
+
|
5859
|
+
def initialize(**args)
|
5860
|
+
update!(**args)
|
5861
|
+
end
|
5862
|
+
|
5863
|
+
# Update properties of this object
|
5864
|
+
def update!(**args)
|
5865
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
5866
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
5867
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
5868
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
5869
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
5870
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
5871
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
5872
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
5873
|
+
end
|
5874
|
+
end
|
5875
|
+
|
5787
5876
|
# Metadata for UpdateDocument operation.
|
5788
5877
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
5789
5878
|
include Google::Apis::Core::Hashable
|
@@ -6585,6 +6674,27 @@ module Google
|
|
6585
6674
|
end
|
6586
6675
|
end
|
6587
6676
|
|
6677
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
6678
|
+
# converted to JSON and exported to BigQuery.
|
6679
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
6680
|
+
include Google::Apis::Core::Hashable
|
6681
|
+
|
6682
|
+
# Collection of all signals that were extracted for a single turn of the
|
6683
|
+
# conversation.
|
6684
|
+
# Corresponds to the JSON property `turnSignals`
|
6685
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TurnSignals]
|
6686
|
+
attr_accessor :turn_signals
|
6687
|
+
|
6688
|
+
def initialize(**args)
|
6689
|
+
update!(**args)
|
6690
|
+
end
|
6691
|
+
|
6692
|
+
# Update properties of this object
|
6693
|
+
def update!(**args)
|
6694
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
6695
|
+
end
|
6696
|
+
end
|
6697
|
+
|
6588
6698
|
# One interaction between a human and virtual agent. The human provides some
|
6589
6699
|
# input and the virtual agent provides a response.
|
6590
6700
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
@@ -8955,6 +9065,74 @@ module Google
|
|
8955
9065
|
end
|
8956
9066
|
end
|
8957
9067
|
|
9068
|
+
# Collection of all signals that were extracted for a single turn of the
|
9069
|
+
# conversation.
|
9070
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
9071
|
+
include Google::Apis::Core::Hashable
|
9072
|
+
|
9073
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
9074
|
+
# Corresponds to the JSON property `agentEscalated`
|
9075
|
+
# @return [Boolean]
|
9076
|
+
attr_accessor :agent_escalated
|
9077
|
+
alias_method :agent_escalated?, :agent_escalated
|
9078
|
+
|
9079
|
+
# Whether user was using DTMF input.
|
9080
|
+
# Corresponds to the JSON property `dtmfUsed`
|
9081
|
+
# @return [Boolean]
|
9082
|
+
attr_accessor :dtmf_used
|
9083
|
+
alias_method :dtmf_used?, :dtmf_used
|
9084
|
+
|
9085
|
+
# Failure reasons of the turn.
|
9086
|
+
# Corresponds to the JSON property `failureReasons`
|
9087
|
+
# @return [Array<String>]
|
9088
|
+
attr_accessor :failure_reasons
|
9089
|
+
|
9090
|
+
# Whether NLU predicted NO_MATCH.
|
9091
|
+
# Corresponds to the JSON property `noMatch`
|
9092
|
+
# @return [Boolean]
|
9093
|
+
attr_accessor :no_match
|
9094
|
+
alias_method :no_match?, :no_match
|
9095
|
+
|
9096
|
+
# Whether user provided no input.
|
9097
|
+
# Corresponds to the JSON property `noUserInput`
|
9098
|
+
# @return [Boolean]
|
9099
|
+
attr_accessor :no_user_input
|
9100
|
+
alias_method :no_user_input?, :no_user_input
|
9101
|
+
|
9102
|
+
# Whether turn resulted in End Session page.
|
9103
|
+
# Corresponds to the JSON property `reachedEndPage`
|
9104
|
+
# @return [Boolean]
|
9105
|
+
attr_accessor :reached_end_page
|
9106
|
+
alias_method :reached_end_page?, :reached_end_page
|
9107
|
+
|
9108
|
+
# Whether user was specifically asking for a live agent.
|
9109
|
+
# Corresponds to the JSON property `userEscalated`
|
9110
|
+
# @return [Boolean]
|
9111
|
+
attr_accessor :user_escalated
|
9112
|
+
alias_method :user_escalated?, :user_escalated
|
9113
|
+
|
9114
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
9115
|
+
# Corresponds to the JSON property `webhookStatuses`
|
9116
|
+
# @return [Array<String>]
|
9117
|
+
attr_accessor :webhook_statuses
|
9118
|
+
|
9119
|
+
def initialize(**args)
|
9120
|
+
update!(**args)
|
9121
|
+
end
|
9122
|
+
|
9123
|
+
# Update properties of this object
|
9124
|
+
def update!(**args)
|
9125
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
9126
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
9127
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
9128
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
9129
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
9130
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
9131
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
9132
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
9133
|
+
end
|
9134
|
+
end
|
9135
|
+
|
8958
9136
|
# Metadata for UpdateDocument operation.
|
8959
9137
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
8960
9138
|
include Google::Apis::Core::Hashable
|
@@ -15602,6 +15780,27 @@ module Google
|
|
15602
15780
|
end
|
15603
15781
|
end
|
15604
15782
|
|
15783
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
15784
|
+
# converted to JSON and exported to BigQuery.
|
15785
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
15786
|
+
include Google::Apis::Core::Hashable
|
15787
|
+
|
15788
|
+
# Collection of all signals that were extracted for a single turn of the
|
15789
|
+
# conversation.
|
15790
|
+
# Corresponds to the JSON property `turnSignals`
|
15791
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1TurnSignals]
|
15792
|
+
attr_accessor :turn_signals
|
15793
|
+
|
15794
|
+
def initialize(**args)
|
15795
|
+
update!(**args)
|
15796
|
+
end
|
15797
|
+
|
15798
|
+
# Update properties of this object
|
15799
|
+
def update!(**args)
|
15800
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
15801
|
+
end
|
15802
|
+
end
|
15803
|
+
|
15605
15804
|
# Metadata for CreateDocument operation.
|
15606
15805
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
15607
15806
|
include Google::Apis::Core::Hashable
|
@@ -15716,6 +15915,82 @@ module Google
|
|
15716
15915
|
end
|
15717
15916
|
end
|
15718
15917
|
|
15918
|
+
# Collection of all signals that were extracted for a single turn of the
|
15919
|
+
# conversation.
|
15920
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
15921
|
+
include Google::Apis::Core::Hashable
|
15922
|
+
|
15923
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
15924
|
+
# Corresponds to the JSON property `agentEscalated`
|
15925
|
+
# @return [Boolean]
|
15926
|
+
attr_accessor :agent_escalated
|
15927
|
+
alias_method :agent_escalated?, :agent_escalated
|
15928
|
+
|
15929
|
+
# Whether user was using DTMF input.
|
15930
|
+
# Corresponds to the JSON property `dtmfUsed`
|
15931
|
+
# @return [Boolean]
|
15932
|
+
attr_accessor :dtmf_used
|
15933
|
+
alias_method :dtmf_used?, :dtmf_used
|
15934
|
+
|
15935
|
+
# Failure reasons of the turn.
|
15936
|
+
# Corresponds to the JSON property `failureReasons`
|
15937
|
+
# @return [Array<String>]
|
15938
|
+
attr_accessor :failure_reasons
|
15939
|
+
|
15940
|
+
# Whether NLU predicted NO_MATCH.
|
15941
|
+
# Corresponds to the JSON property `noMatch`
|
15942
|
+
# @return [Boolean]
|
15943
|
+
attr_accessor :no_match
|
15944
|
+
alias_method :no_match?, :no_match
|
15945
|
+
|
15946
|
+
# Whether user provided no input.
|
15947
|
+
# Corresponds to the JSON property `noUserInput`
|
15948
|
+
# @return [Boolean]
|
15949
|
+
attr_accessor :no_user_input
|
15950
|
+
alias_method :no_user_input?, :no_user_input
|
15951
|
+
|
15952
|
+
# Whether turn resulted in End Session page.
|
15953
|
+
# Corresponds to the JSON property `reachedEndPage`
|
15954
|
+
# @return [Boolean]
|
15955
|
+
attr_accessor :reached_end_page
|
15956
|
+
alias_method :reached_end_page?, :reached_end_page
|
15957
|
+
|
15958
|
+
# Whether agent has triggered the event corresponding to user abandoning the
|
15959
|
+
# conversation.
|
15960
|
+
# Corresponds to the JSON property `triggeredAbandonmentEvent`
|
15961
|
+
# @return [Boolean]
|
15962
|
+
attr_accessor :triggered_abandonment_event
|
15963
|
+
alias_method :triggered_abandonment_event?, :triggered_abandonment_event
|
15964
|
+
|
15965
|
+
# Whether user was specifically asking for a live agent.
|
15966
|
+
# Corresponds to the JSON property `userEscalated`
|
15967
|
+
# @return [Boolean]
|
15968
|
+
attr_accessor :user_escalated
|
15969
|
+
alias_method :user_escalated?, :user_escalated
|
15970
|
+
|
15971
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
15972
|
+
# Corresponds to the JSON property `webhookStatuses`
|
15973
|
+
# @return [Array<String>]
|
15974
|
+
attr_accessor :webhook_statuses
|
15975
|
+
|
15976
|
+
def initialize(**args)
|
15977
|
+
update!(**args)
|
15978
|
+
end
|
15979
|
+
|
15980
|
+
# Update properties of this object
|
15981
|
+
def update!(**args)
|
15982
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
15983
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
15984
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
15985
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
15986
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
15987
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
15988
|
+
@triggered_abandonment_event = args[:triggered_abandonment_event] if args.key?(:triggered_abandonment_event)
|
15989
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
15990
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
15991
|
+
end
|
15992
|
+
end
|
15993
|
+
|
15719
15994
|
# Metadata for UpdateDocument operation.
|
15720
15995
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
15721
15996
|
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.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,12 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
109
115
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
110
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
117
|
|
@@ -964,6 +970,12 @@ module Google
|
|
964
970
|
include Google::Apis::Core::JsonObjectSupport
|
965
971
|
end
|
966
972
|
|
973
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
967
979
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
968
980
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
981
|
|
@@ -1102,6 +1114,12 @@ module Google
|
|
1102
1114
|
include Google::Apis::Core::JsonObjectSupport
|
1103
1115
|
end
|
1104
1116
|
|
1117
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1119
|
+
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
1121
|
+
end
|
1122
|
+
|
1105
1123
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
1106
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1107
1125
|
|
@@ -1510,6 +1528,12 @@ module Google
|
|
1510
1528
|
include Google::Apis::Core::JsonObjectSupport
|
1511
1529
|
end
|
1512
1530
|
|
1531
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1533
|
+
|
1534
|
+
include Google::Apis::Core::JsonObjectSupport
|
1535
|
+
end
|
1536
|
+
|
1513
1537
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
1514
1538
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1515
1539
|
|
@@ -2530,6 +2554,12 @@ module Google
|
|
2530
2554
|
include Google::Apis::Core::JsonObjectSupport
|
2531
2555
|
end
|
2532
2556
|
|
2557
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
2558
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2559
|
+
|
2560
|
+
include Google::Apis::Core::JsonObjectSupport
|
2561
|
+
end
|
2562
|
+
|
2533
2563
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
2534
2564
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2535
2565
|
|
@@ -2566,6 +2596,12 @@ module Google
|
|
2566
2596
|
include Google::Apis::Core::JsonObjectSupport
|
2567
2597
|
end
|
2568
2598
|
|
2599
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
2600
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2601
|
+
|
2602
|
+
include Google::Apis::Core::JsonObjectSupport
|
2603
|
+
end
|
2604
|
+
|
2569
2605
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
2570
2606
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2571
2607
|
|
@@ -2754,6 +2790,14 @@ module Google
|
|
2754
2790
|
end
|
2755
2791
|
end
|
2756
2792
|
|
2793
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
2794
|
+
# @private
|
2795
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2796
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TurnSignals::Representation
|
2797
|
+
|
2798
|
+
end
|
2799
|
+
end
|
2800
|
+
|
2757
2801
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
2758
2802
|
# @private
|
2759
2803
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4173,6 +4217,20 @@ module Google
|
|
4173
4217
|
end
|
4174
4218
|
end
|
4175
4219
|
|
4220
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
4221
|
+
# @private
|
4222
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4223
|
+
property :agent_escalated, as: 'agentEscalated'
|
4224
|
+
property :dtmf_used, as: 'dtmfUsed'
|
4225
|
+
collection :failure_reasons, as: 'failureReasons'
|
4226
|
+
property :no_match, as: 'noMatch'
|
4227
|
+
property :no_user_input, as: 'noUserInput'
|
4228
|
+
property :reached_end_page, as: 'reachedEndPage'
|
4229
|
+
property :user_escalated, as: 'userEscalated'
|
4230
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
4231
|
+
end
|
4232
|
+
end
|
4233
|
+
|
4176
4234
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
4177
4235
|
# @private
|
4178
4236
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4406,6 +4464,14 @@ module Google
|
|
4406
4464
|
end
|
4407
4465
|
end
|
4408
4466
|
|
4467
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
4468
|
+
# @private
|
4469
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4470
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TurnSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TurnSignals::Representation
|
4471
|
+
|
4472
|
+
end
|
4473
|
+
end
|
4474
|
+
|
4409
4475
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
4410
4476
|
# @private
|
4411
4477
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5060,6 +5126,20 @@ module Google
|
|
5060
5126
|
end
|
5061
5127
|
end
|
5062
5128
|
|
5129
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
5130
|
+
# @private
|
5131
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5132
|
+
property :agent_escalated, as: 'agentEscalated'
|
5133
|
+
property :dtmf_used, as: 'dtmfUsed'
|
5134
|
+
collection :failure_reasons, as: 'failureReasons'
|
5135
|
+
property :no_match, as: 'noMatch'
|
5136
|
+
property :no_user_input, as: 'noUserInput'
|
5137
|
+
property :reached_end_page, as: 'reachedEndPage'
|
5138
|
+
property :user_escalated, as: 'userEscalated'
|
5139
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
5140
|
+
end
|
5141
|
+
end
|
5142
|
+
|
5063
5143
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
5064
5144
|
# @private
|
5065
5145
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6859,6 +6939,14 @@ module Google
|
|
6859
6939
|
end
|
6860
6940
|
end
|
6861
6941
|
|
6942
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
6943
|
+
# @private
|
6944
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6945
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1TurnSignals, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV3alpha1TurnSignals::Representation
|
6946
|
+
|
6947
|
+
end
|
6948
|
+
end
|
6949
|
+
|
6862
6950
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
6863
6951
|
# @private
|
6864
6952
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6906,6 +6994,21 @@ module Google
|
|
6906
6994
|
end
|
6907
6995
|
end
|
6908
6996
|
|
6997
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
6998
|
+
# @private
|
6999
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7000
|
+
property :agent_escalated, as: 'agentEscalated'
|
7001
|
+
property :dtmf_used, as: 'dtmfUsed'
|
7002
|
+
collection :failure_reasons, as: 'failureReasons'
|
7003
|
+
property :no_match, as: 'noMatch'
|
7004
|
+
property :no_user_input, as: 'noUserInput'
|
7005
|
+
property :reached_end_page, as: 'reachedEndPage'
|
7006
|
+
property :triggered_abandonment_event, as: 'triggeredAbandonmentEvent'
|
7007
|
+
property :user_escalated, as: 'userEscalated'
|
7008
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
7009
|
+
end
|
7010
|
+
end
|
7011
|
+
|
6909
7012
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
6910
7013
|
# @private
|
6911
7014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.48.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-01-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.48.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|