google-apis-dialogflow_v2beta1 0.46.0 → 0.47.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: 25b6d23369cf56bbb8e7878b0845fe4b4e8a1f86730ac6a3b00fb81ad9043726
|
4
|
+
data.tar.gz: 47f281e6b96d227fb9e63378a808077aae93abfed93860dc01f419e20a42f05b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1dfe213c6e202f2299a820f3c1bfbf759d40b14ab582cd40175a94063428f5cef47cc2f06df3dad345da1301a5b52b254668a0cd193a2e18de85fdba60868427
|
7
|
+
data.tar.gz: b027949c64da6dc5960941a2b36dd329be300a68fe90a87e26d44638777b19b415a6fb1e31d37ab8f42e18c05a899cd5418c3195c5392080c65c732badb146db
|
data/CHANGELOG.md
CHANGED
@@ -131,6 +131,27 @@ module Google
|
|
131
131
|
end
|
132
132
|
end
|
133
133
|
|
134
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
135
|
+
# converted to JSON and exported to BigQuery.
|
136
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
137
|
+
include Google::Apis::Core::Hashable
|
138
|
+
|
139
|
+
# Collection of all signals that were extracted for a single turn of the
|
140
|
+
# conversation.
|
141
|
+
# Corresponds to the JSON property `turnSignals`
|
142
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TurnSignals]
|
143
|
+
attr_accessor :turn_signals
|
144
|
+
|
145
|
+
def initialize(**args)
|
146
|
+
update!(**args)
|
147
|
+
end
|
148
|
+
|
149
|
+
# Update properties of this object
|
150
|
+
def update!(**args)
|
151
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
134
155
|
# One interaction between a human and virtual agent. The human provides some
|
135
156
|
# input and the virtual agent provides a response.
|
136
157
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
@@ -2501,6 +2522,74 @@ module Google
|
|
2501
2522
|
end
|
2502
2523
|
end
|
2503
2524
|
|
2525
|
+
# Collection of all signals that were extracted for a single turn of the
|
2526
|
+
# conversation.
|
2527
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
2528
|
+
include Google::Apis::Core::Hashable
|
2529
|
+
|
2530
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
2531
|
+
# Corresponds to the JSON property `agentEscalated`
|
2532
|
+
# @return [Boolean]
|
2533
|
+
attr_accessor :agent_escalated
|
2534
|
+
alias_method :agent_escalated?, :agent_escalated
|
2535
|
+
|
2536
|
+
# Whether user was using DTMF input.
|
2537
|
+
# Corresponds to the JSON property `dtmfUsed`
|
2538
|
+
# @return [Boolean]
|
2539
|
+
attr_accessor :dtmf_used
|
2540
|
+
alias_method :dtmf_used?, :dtmf_used
|
2541
|
+
|
2542
|
+
# Failure reasons of the turn.
|
2543
|
+
# Corresponds to the JSON property `failureReasons`
|
2544
|
+
# @return [Array<String>]
|
2545
|
+
attr_accessor :failure_reasons
|
2546
|
+
|
2547
|
+
# Whether NLU predicted NO_MATCH.
|
2548
|
+
# Corresponds to the JSON property `noMatch`
|
2549
|
+
# @return [Boolean]
|
2550
|
+
attr_accessor :no_match
|
2551
|
+
alias_method :no_match?, :no_match
|
2552
|
+
|
2553
|
+
# Whether user provided no input.
|
2554
|
+
# Corresponds to the JSON property `noUserInput`
|
2555
|
+
# @return [Boolean]
|
2556
|
+
attr_accessor :no_user_input
|
2557
|
+
alias_method :no_user_input?, :no_user_input
|
2558
|
+
|
2559
|
+
# Whether turn resulted in End Session page.
|
2560
|
+
# Corresponds to the JSON property `reachedEndPage`
|
2561
|
+
# @return [Boolean]
|
2562
|
+
attr_accessor :reached_end_page
|
2563
|
+
alias_method :reached_end_page?, :reached_end_page
|
2564
|
+
|
2565
|
+
# Whether user was specifically asking for a live agent.
|
2566
|
+
# Corresponds to the JSON property `userEscalated`
|
2567
|
+
# @return [Boolean]
|
2568
|
+
attr_accessor :user_escalated
|
2569
|
+
alias_method :user_escalated?, :user_escalated
|
2570
|
+
|
2571
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
2572
|
+
# Corresponds to the JSON property `webhookStatuses`
|
2573
|
+
# @return [Array<String>]
|
2574
|
+
attr_accessor :webhook_statuses
|
2575
|
+
|
2576
|
+
def initialize(**args)
|
2577
|
+
update!(**args)
|
2578
|
+
end
|
2579
|
+
|
2580
|
+
# Update properties of this object
|
2581
|
+
def update!(**args)
|
2582
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
2583
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
2584
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
2585
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
2586
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
2587
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
2588
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
2589
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
2590
|
+
end
|
2591
|
+
end
|
2592
|
+
|
2504
2593
|
# Metadata for UpdateDocument operation.
|
2505
2594
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
2506
2595
|
include Google::Apis::Core::Hashable
|
@@ -3059,6 +3148,27 @@ module Google
|
|
3059
3148
|
end
|
3060
3149
|
end
|
3061
3150
|
|
3151
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
3152
|
+
# converted to JSON and exported to BigQuery.
|
3153
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
3154
|
+
include Google::Apis::Core::Hashable
|
3155
|
+
|
3156
|
+
# Collection of all signals that were extracted for a single turn of the
|
3157
|
+
# conversation.
|
3158
|
+
# Corresponds to the JSON property `turnSignals`
|
3159
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TurnSignals]
|
3160
|
+
attr_accessor :turn_signals
|
3161
|
+
|
3162
|
+
def initialize(**args)
|
3163
|
+
update!(**args)
|
3164
|
+
end
|
3165
|
+
|
3166
|
+
# Update properties of this object
|
3167
|
+
def update!(**args)
|
3168
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
3169
|
+
end
|
3170
|
+
end
|
3171
|
+
|
3062
3172
|
# One interaction between a human and virtual agent. The human provides some
|
3063
3173
|
# input and the virtual agent provides a response.
|
3064
3174
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
@@ -5429,6 +5539,74 @@ module Google
|
|
5429
5539
|
end
|
5430
5540
|
end
|
5431
5541
|
|
5542
|
+
# Collection of all signals that were extracted for a single turn of the
|
5543
|
+
# conversation.
|
5544
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
5545
|
+
include Google::Apis::Core::Hashable
|
5546
|
+
|
5547
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
5548
|
+
# Corresponds to the JSON property `agentEscalated`
|
5549
|
+
# @return [Boolean]
|
5550
|
+
attr_accessor :agent_escalated
|
5551
|
+
alias_method :agent_escalated?, :agent_escalated
|
5552
|
+
|
5553
|
+
# Whether user was using DTMF input.
|
5554
|
+
# Corresponds to the JSON property `dtmfUsed`
|
5555
|
+
# @return [Boolean]
|
5556
|
+
attr_accessor :dtmf_used
|
5557
|
+
alias_method :dtmf_used?, :dtmf_used
|
5558
|
+
|
5559
|
+
# Failure reasons of the turn.
|
5560
|
+
# Corresponds to the JSON property `failureReasons`
|
5561
|
+
# @return [Array<String>]
|
5562
|
+
attr_accessor :failure_reasons
|
5563
|
+
|
5564
|
+
# Whether NLU predicted NO_MATCH.
|
5565
|
+
# Corresponds to the JSON property `noMatch`
|
5566
|
+
# @return [Boolean]
|
5567
|
+
attr_accessor :no_match
|
5568
|
+
alias_method :no_match?, :no_match
|
5569
|
+
|
5570
|
+
# Whether user provided no input.
|
5571
|
+
# Corresponds to the JSON property `noUserInput`
|
5572
|
+
# @return [Boolean]
|
5573
|
+
attr_accessor :no_user_input
|
5574
|
+
alias_method :no_user_input?, :no_user_input
|
5575
|
+
|
5576
|
+
# Whether turn resulted in End Session page.
|
5577
|
+
# Corresponds to the JSON property `reachedEndPage`
|
5578
|
+
# @return [Boolean]
|
5579
|
+
attr_accessor :reached_end_page
|
5580
|
+
alias_method :reached_end_page?, :reached_end_page
|
5581
|
+
|
5582
|
+
# Whether user was specifically asking for a live agent.
|
5583
|
+
# Corresponds to the JSON property `userEscalated`
|
5584
|
+
# @return [Boolean]
|
5585
|
+
attr_accessor :user_escalated
|
5586
|
+
alias_method :user_escalated?, :user_escalated
|
5587
|
+
|
5588
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
5589
|
+
# Corresponds to the JSON property `webhookStatuses`
|
5590
|
+
# @return [Array<String>]
|
5591
|
+
attr_accessor :webhook_statuses
|
5592
|
+
|
5593
|
+
def initialize(**args)
|
5594
|
+
update!(**args)
|
5595
|
+
end
|
5596
|
+
|
5597
|
+
# Update properties of this object
|
5598
|
+
def update!(**args)
|
5599
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
5600
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
5601
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
5602
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
5603
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
5604
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
5605
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
5606
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
5607
|
+
end
|
5608
|
+
end
|
5609
|
+
|
5432
5610
|
# Metadata for UpdateDocument operation.
|
5433
5611
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
5434
5612
|
include Google::Apis::Core::Hashable
|
@@ -16474,6 +16652,27 @@ module Google
|
|
16474
16652
|
end
|
16475
16653
|
end
|
16476
16654
|
|
16655
|
+
# This message is used to hold all the Conversation Signals data, which will be
|
16656
|
+
# converted to JSON and exported to BigQuery.
|
16657
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
16658
|
+
include Google::Apis::Core::Hashable
|
16659
|
+
|
16660
|
+
# Collection of all signals that were extracted for a single turn of the
|
16661
|
+
# conversation.
|
16662
|
+
# Corresponds to the JSON property `turnSignals`
|
16663
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV3alpha1TurnSignals]
|
16664
|
+
attr_accessor :turn_signals
|
16665
|
+
|
16666
|
+
def initialize(**args)
|
16667
|
+
update!(**args)
|
16668
|
+
end
|
16669
|
+
|
16670
|
+
# Update properties of this object
|
16671
|
+
def update!(**args)
|
16672
|
+
@turn_signals = args[:turn_signals] if args.key?(:turn_signals)
|
16673
|
+
end
|
16674
|
+
end
|
16675
|
+
|
16477
16676
|
# Metadata for CreateDocument operation.
|
16478
16677
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
16479
16678
|
include Google::Apis::Core::Hashable
|
@@ -16588,6 +16787,82 @@ module Google
|
|
16588
16787
|
end
|
16589
16788
|
end
|
16590
16789
|
|
16790
|
+
# Collection of all signals that were extracted for a single turn of the
|
16791
|
+
# conversation.
|
16792
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
16793
|
+
include Google::Apis::Core::Hashable
|
16794
|
+
|
16795
|
+
# Whether agent responded with LiveAgentHandoff fulfillment.
|
16796
|
+
# Corresponds to the JSON property `agentEscalated`
|
16797
|
+
# @return [Boolean]
|
16798
|
+
attr_accessor :agent_escalated
|
16799
|
+
alias_method :agent_escalated?, :agent_escalated
|
16800
|
+
|
16801
|
+
# Whether user was using DTMF input.
|
16802
|
+
# Corresponds to the JSON property `dtmfUsed`
|
16803
|
+
# @return [Boolean]
|
16804
|
+
attr_accessor :dtmf_used
|
16805
|
+
alias_method :dtmf_used?, :dtmf_used
|
16806
|
+
|
16807
|
+
# Failure reasons of the turn.
|
16808
|
+
# Corresponds to the JSON property `failureReasons`
|
16809
|
+
# @return [Array<String>]
|
16810
|
+
attr_accessor :failure_reasons
|
16811
|
+
|
16812
|
+
# Whether NLU predicted NO_MATCH.
|
16813
|
+
# Corresponds to the JSON property `noMatch`
|
16814
|
+
# @return [Boolean]
|
16815
|
+
attr_accessor :no_match
|
16816
|
+
alias_method :no_match?, :no_match
|
16817
|
+
|
16818
|
+
# Whether user provided no input.
|
16819
|
+
# Corresponds to the JSON property `noUserInput`
|
16820
|
+
# @return [Boolean]
|
16821
|
+
attr_accessor :no_user_input
|
16822
|
+
alias_method :no_user_input?, :no_user_input
|
16823
|
+
|
16824
|
+
# Whether turn resulted in End Session page.
|
16825
|
+
# Corresponds to the JSON property `reachedEndPage`
|
16826
|
+
# @return [Boolean]
|
16827
|
+
attr_accessor :reached_end_page
|
16828
|
+
alias_method :reached_end_page?, :reached_end_page
|
16829
|
+
|
16830
|
+
# Whether agent has triggered the event corresponding to user abandoning the
|
16831
|
+
# conversation.
|
16832
|
+
# Corresponds to the JSON property `triggeredAbandonmentEvent`
|
16833
|
+
# @return [Boolean]
|
16834
|
+
attr_accessor :triggered_abandonment_event
|
16835
|
+
alias_method :triggered_abandonment_event?, :triggered_abandonment_event
|
16836
|
+
|
16837
|
+
# Whether user was specifically asking for a live agent.
|
16838
|
+
# Corresponds to the JSON property `userEscalated`
|
16839
|
+
# @return [Boolean]
|
16840
|
+
attr_accessor :user_escalated
|
16841
|
+
alias_method :user_escalated?, :user_escalated
|
16842
|
+
|
16843
|
+
# Human-readable statuses of the webhooks triggered during this turn.
|
16844
|
+
# Corresponds to the JSON property `webhookStatuses`
|
16845
|
+
# @return [Array<String>]
|
16846
|
+
attr_accessor :webhook_statuses
|
16847
|
+
|
16848
|
+
def initialize(**args)
|
16849
|
+
update!(**args)
|
16850
|
+
end
|
16851
|
+
|
16852
|
+
# Update properties of this object
|
16853
|
+
def update!(**args)
|
16854
|
+
@agent_escalated = args[:agent_escalated] if args.key?(:agent_escalated)
|
16855
|
+
@dtmf_used = args[:dtmf_used] if args.key?(:dtmf_used)
|
16856
|
+
@failure_reasons = args[:failure_reasons] if args.key?(:failure_reasons)
|
16857
|
+
@no_match = args[:no_match] if args.key?(:no_match)
|
16858
|
+
@no_user_input = args[:no_user_input] if args.key?(:no_user_input)
|
16859
|
+
@reached_end_page = args[:reached_end_page] if args.key?(:reached_end_page)
|
16860
|
+
@triggered_abandonment_event = args[:triggered_abandonment_event] if args.key?(:triggered_abandonment_event)
|
16861
|
+
@user_escalated = args[:user_escalated] if args.key?(:user_escalated)
|
16862
|
+
@webhook_statuses = args[:webhook_statuses] if args.key?(:webhook_statuses)
|
16863
|
+
end
|
16864
|
+
end
|
16865
|
+
|
16591
16866
|
# Metadata for UpdateDocument operation.
|
16592
16867
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
16593
16868
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.47.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
|
@@ -46,6 +46,12 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
49
55
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
57
|
|
@@ -454,6 +460,12 @@ module Google
|
|
454
460
|
include Google::Apis::Core::JsonObjectSupport
|
455
461
|
end
|
456
462
|
|
463
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
457
469
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
458
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
471
|
|
@@ -544,6 +556,12 @@ module Google
|
|
544
556
|
include Google::Apis::Core::JsonObjectSupport
|
545
557
|
end
|
546
558
|
|
559
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
560
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
561
|
+
|
562
|
+
include Google::Apis::Core::JsonObjectSupport
|
563
|
+
end
|
564
|
+
|
547
565
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
548
566
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
567
|
|
@@ -952,6 +970,12 @@ module Google
|
|
952
970
|
include Google::Apis::Core::JsonObjectSupport
|
953
971
|
end
|
954
972
|
|
973
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
974
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
975
|
+
|
976
|
+
include Google::Apis::Core::JsonObjectSupport
|
977
|
+
end
|
978
|
+
|
955
979
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
956
980
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
957
981
|
|
@@ -2692,6 +2716,12 @@ module Google
|
|
2692
2716
|
include Google::Apis::Core::JsonObjectSupport
|
2693
2717
|
end
|
2694
2718
|
|
2719
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
2720
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2721
|
+
|
2722
|
+
include Google::Apis::Core::JsonObjectSupport
|
2723
|
+
end
|
2724
|
+
|
2695
2725
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
2696
2726
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2697
2727
|
|
@@ -2728,6 +2758,12 @@ module Google
|
|
2728
2758
|
include Google::Apis::Core::JsonObjectSupport
|
2729
2759
|
end
|
2730
2760
|
|
2761
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
2762
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2763
|
+
|
2764
|
+
include Google::Apis::Core::JsonObjectSupport
|
2765
|
+
end
|
2766
|
+
|
2731
2767
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
2732
2768
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2733
2769
|
|
@@ -2811,6 +2847,14 @@ module Google
|
|
2811
2847
|
end
|
2812
2848
|
end
|
2813
2849
|
|
2850
|
+
class GoogleCloudDialogflowCxV3ConversationSignals
|
2851
|
+
# @private
|
2852
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2853
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TurnSignals, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TurnSignals::Representation
|
2854
|
+
|
2855
|
+
end
|
2856
|
+
end
|
2857
|
+
|
2814
2858
|
class GoogleCloudDialogflowCxV3ConversationTurn
|
2815
2859
|
# @private
|
2816
2860
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3465,6 +3509,20 @@ module Google
|
|
3465
3509
|
end
|
3466
3510
|
end
|
3467
3511
|
|
3512
|
+
class GoogleCloudDialogflowCxV3TurnSignals
|
3513
|
+
# @private
|
3514
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3515
|
+
property :agent_escalated, as: 'agentEscalated'
|
3516
|
+
property :dtmf_used, as: 'dtmfUsed'
|
3517
|
+
collection :failure_reasons, as: 'failureReasons'
|
3518
|
+
property :no_match, as: 'noMatch'
|
3519
|
+
property :no_user_input, as: 'noUserInput'
|
3520
|
+
property :reached_end_page, as: 'reachedEndPage'
|
3521
|
+
property :user_escalated, as: 'userEscalated'
|
3522
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
3523
|
+
end
|
3524
|
+
end
|
3525
|
+
|
3468
3526
|
class GoogleCloudDialogflowCxV3UpdateDocumentOperationMetadata
|
3469
3527
|
# @private
|
3470
3528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3625,6 +3683,14 @@ module Google
|
|
3625
3683
|
end
|
3626
3684
|
end
|
3627
3685
|
|
3686
|
+
class GoogleCloudDialogflowCxV3beta1ConversationSignals
|
3687
|
+
# @private
|
3688
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3689
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TurnSignals, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TurnSignals::Representation
|
3690
|
+
|
3691
|
+
end
|
3692
|
+
end
|
3693
|
+
|
3628
3694
|
class GoogleCloudDialogflowCxV3beta1ConversationTurn
|
3629
3695
|
# @private
|
3630
3696
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4279,6 +4345,20 @@ module Google
|
|
4279
4345
|
end
|
4280
4346
|
end
|
4281
4347
|
|
4348
|
+
class GoogleCloudDialogflowCxV3beta1TurnSignals
|
4349
|
+
# @private
|
4350
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4351
|
+
property :agent_escalated, as: 'agentEscalated'
|
4352
|
+
property :dtmf_used, as: 'dtmfUsed'
|
4353
|
+
collection :failure_reasons, as: 'failureReasons'
|
4354
|
+
property :no_match, as: 'noMatch'
|
4355
|
+
property :no_user_input, as: 'noUserInput'
|
4356
|
+
property :reached_end_page, as: 'reachedEndPage'
|
4357
|
+
property :user_escalated, as: 'userEscalated'
|
4358
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
4359
|
+
end
|
4360
|
+
end
|
4361
|
+
|
4282
4362
|
class GoogleCloudDialogflowCxV3beta1UpdateDocumentOperationMetadata
|
4283
4363
|
# @private
|
4284
4364
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7278,6 +7358,14 @@ module Google
|
|
7278
7358
|
end
|
7279
7359
|
end
|
7280
7360
|
|
7361
|
+
class GoogleCloudDialogflowV3alpha1ConversationSignals
|
7362
|
+
# @private
|
7363
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7364
|
+
property :turn_signals, as: 'turnSignals', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV3alpha1TurnSignals, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV3alpha1TurnSignals::Representation
|
7365
|
+
|
7366
|
+
end
|
7367
|
+
end
|
7368
|
+
|
7281
7369
|
class GoogleCloudDialogflowV3alpha1CreateDocumentOperationMetadata
|
7282
7370
|
# @private
|
7283
7371
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7325,6 +7413,21 @@ module Google
|
|
7325
7413
|
end
|
7326
7414
|
end
|
7327
7415
|
|
7416
|
+
class GoogleCloudDialogflowV3alpha1TurnSignals
|
7417
|
+
# @private
|
7418
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7419
|
+
property :agent_escalated, as: 'agentEscalated'
|
7420
|
+
property :dtmf_used, as: 'dtmfUsed'
|
7421
|
+
collection :failure_reasons, as: 'failureReasons'
|
7422
|
+
property :no_match, as: 'noMatch'
|
7423
|
+
property :no_user_input, as: 'noUserInput'
|
7424
|
+
property :reached_end_page, as: 'reachedEndPage'
|
7425
|
+
property :triggered_abandonment_event, as: 'triggeredAbandonmentEvent'
|
7426
|
+
property :user_escalated, as: 'userEscalated'
|
7427
|
+
collection :webhook_statuses, as: 'webhookStatuses'
|
7428
|
+
end
|
7429
|
+
end
|
7430
|
+
|
7328
7431
|
class GoogleCloudDialogflowV3alpha1UpdateDocumentOperationMetadata
|
7329
7432
|
# @private
|
7330
7433
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.47.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_v2beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.47.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|