google-apis-dialogflow_v2beta1 0.9.0 → 0.10.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 +4 -0
- data/lib/google/apis/dialogflow_v2beta1/classes.rb +167 -0
- data/lib/google/apis/dialogflow_v2beta1/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v2beta1/representations.rb +58 -0
- data/lib/google/apis/dialogflow_v2beta1/service.rb +3 -3
- 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: 5d56107aa44b51b3cf13c224d967cedcfbc0da8ce1620457b55e2531304cf77a
|
4
|
+
data.tar.gz: d6401cc5ec6efa39614a7e5a70b8b07bb1ba3ed22f3dff0e17ea94b8a32a3273
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc944915c38983159f221f265a52b4321990efe0b858b8a75593bf971a5bc5f25ed576612216b4e6210ea408d20945677cbcde5fb23df0cad338625e99279b62
|
7
|
+
data.tar.gz: bd7da53229f3b4ec970d32bdfb25d00b25c5eaa0c534e33fd826606c2e6a230e1efb969edefc060a6cae1602d72e3b1a5a292363f23251f472234ab4d1e1b0f0
|
data/CHANGELOG.md
CHANGED
@@ -2175,6 +2175,30 @@ module Google
|
|
2175
2175
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3SessionInfo]
|
2176
2176
|
attr_accessor :session_info
|
2177
2177
|
|
2178
|
+
# If natural language text was provided as input, this field will contain a copy
|
2179
|
+
# of the text.
|
2180
|
+
# Corresponds to the JSON property `text`
|
2181
|
+
# @return [String]
|
2182
|
+
attr_accessor :text
|
2183
|
+
|
2184
|
+
# If natural language speech audio was provided as input, this field will
|
2185
|
+
# contain the transcript for the audio.
|
2186
|
+
# Corresponds to the JSON property `transcript`
|
2187
|
+
# @return [String]
|
2188
|
+
attr_accessor :transcript
|
2189
|
+
|
2190
|
+
# If an event was provided as input, this field will contain the name of the
|
2191
|
+
# event.
|
2192
|
+
# Corresponds to the JSON property `triggerEvent`
|
2193
|
+
# @return [String]
|
2194
|
+
attr_accessor :trigger_event
|
2195
|
+
|
2196
|
+
# If an intent was provided as input, this field will contain a copy of the
|
2197
|
+
# intent identifier. Format: `projects//locations//agents//intents/`.
|
2198
|
+
# Corresponds to the JSON property `triggerIntent`
|
2199
|
+
# @return [String]
|
2200
|
+
attr_accessor :trigger_intent
|
2201
|
+
|
2178
2202
|
def initialize(**args)
|
2179
2203
|
update!(**args)
|
2180
2204
|
end
|
@@ -2189,6 +2213,10 @@ module Google
|
|
2189
2213
|
@payload = args[:payload] if args.key?(:payload)
|
2190
2214
|
@sentiment_analysis_result = args[:sentiment_analysis_result] if args.key?(:sentiment_analysis_result)
|
2191
2215
|
@session_info = args[:session_info] if args.key?(:session_info)
|
2216
|
+
@text = args[:text] if args.key?(:text)
|
2217
|
+
@transcript = args[:transcript] if args.key?(:transcript)
|
2218
|
+
@trigger_event = args[:trigger_event] if args.key?(:trigger_event)
|
2219
|
+
@trigger_intent = args[:trigger_intent] if args.key?(:trigger_intent)
|
2192
2220
|
end
|
2193
2221
|
end
|
2194
2222
|
|
@@ -4534,6 +4562,30 @@ module Google
|
|
4534
4562
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1SessionInfo]
|
4535
4563
|
attr_accessor :session_info
|
4536
4564
|
|
4565
|
+
# If natural language text was provided as input, this field will contain a copy
|
4566
|
+
# of the text.
|
4567
|
+
# Corresponds to the JSON property `text`
|
4568
|
+
# @return [String]
|
4569
|
+
attr_accessor :text
|
4570
|
+
|
4571
|
+
# If natural language speech audio was provided as input, this field will
|
4572
|
+
# contain the transcript for the audio.
|
4573
|
+
# Corresponds to the JSON property `transcript`
|
4574
|
+
# @return [String]
|
4575
|
+
attr_accessor :transcript
|
4576
|
+
|
4577
|
+
# If an event was provided as input, this field will contain the name of the
|
4578
|
+
# event.
|
4579
|
+
# Corresponds to the JSON property `triggerEvent`
|
4580
|
+
# @return [String]
|
4581
|
+
attr_accessor :trigger_event
|
4582
|
+
|
4583
|
+
# If an intent was provided as input, this field will contain a copy of the
|
4584
|
+
# intent identifier. Format: `projects//locations//agents//intents/`.
|
4585
|
+
# Corresponds to the JSON property `triggerIntent`
|
4586
|
+
# @return [String]
|
4587
|
+
attr_accessor :trigger_intent
|
4588
|
+
|
4537
4589
|
def initialize(**args)
|
4538
4590
|
update!(**args)
|
4539
4591
|
end
|
@@ -4548,6 +4600,10 @@ module Google
|
|
4548
4600
|
@payload = args[:payload] if args.key?(:payload)
|
4549
4601
|
@sentiment_analysis_result = args[:sentiment_analysis_result] if args.key?(:sentiment_analysis_result)
|
4550
4602
|
@session_info = args[:session_info] if args.key?(:session_info)
|
4603
|
+
@text = args[:text] if args.key?(:text)
|
4604
|
+
@transcript = args[:transcript] if args.key?(:transcript)
|
4605
|
+
@trigger_event = args[:trigger_event] if args.key?(:trigger_event)
|
4606
|
+
@trigger_intent = args[:trigger_intent] if args.key?(:trigger_intent)
|
4551
4607
|
end
|
4552
4608
|
end
|
4553
4609
|
|
@@ -8287,6 +8343,13 @@ module Google
|
|
8287
8343
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig]
|
8288
8344
|
attr_accessor :human_agent_assistant_config
|
8289
8345
|
|
8346
|
+
# Defines the hand off to a live agent, typically on which external agent
|
8347
|
+
# service provider to connect to a conversation. Currently, this feature is not
|
8348
|
+
# general available, please contact Google to get access.
|
8349
|
+
# Corresponds to the JSON property `humanAgentHandoffConfig`
|
8350
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig]
|
8351
|
+
attr_accessor :human_agent_handoff_config
|
8352
|
+
|
8290
8353
|
# Language code for the conversation profile. If not specified, the language is
|
8291
8354
|
# en-US. Language at ConversationProfile should be set for all non en-us
|
8292
8355
|
# languages.
|
@@ -8335,6 +8398,7 @@ module Google
|
|
8335
8398
|
@create_time = args[:create_time] if args.key?(:create_time)
|
8336
8399
|
@display_name = args[:display_name] if args.key?(:display_name)
|
8337
8400
|
@human_agent_assistant_config = args[:human_agent_assistant_config] if args.key?(:human_agent_assistant_config)
|
8401
|
+
@human_agent_handoff_config = args[:human_agent_handoff_config] if args.key?(:human_agent_handoff_config)
|
8338
8402
|
@language_code = args[:language_code] if args.key?(:language_code)
|
8339
8403
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
8340
8404
|
@name = args[:name] if args.key?(:name)
|
@@ -9138,6 +9202,11 @@ module Google
|
|
9138
9202
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig
|
9139
9203
|
include Google::Apis::Core::Hashable
|
9140
9204
|
|
9205
|
+
# Detail human agent assistant config.
|
9206
|
+
# Corresponds to the JSON property `endUserSuggestionConfig`
|
9207
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig]
|
9208
|
+
attr_accessor :end_user_suggestion_config
|
9209
|
+
|
9141
9210
|
# Detail human agent assistant config.
|
9142
9211
|
# Corresponds to the JSON property `humanAgentSuggestionConfig`
|
9143
9212
|
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig]
|
@@ -9159,6 +9228,7 @@ module Google
|
|
9159
9228
|
|
9160
9229
|
# Update properties of this object
|
9161
9230
|
def update!(**args)
|
9231
|
+
@end_user_suggestion_config = args[:end_user_suggestion_config] if args.key?(:end_user_suggestion_config)
|
9162
9232
|
@human_agent_suggestion_config = args[:human_agent_suggestion_config] if args.key?(:human_agent_suggestion_config)
|
9163
9233
|
@message_analysis_config = args[:message_analysis_config] if args.key?(:message_analysis_config)
|
9164
9234
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
@@ -9190,6 +9260,15 @@ module Google
|
|
9190
9260
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
|
9191
9261
|
include Google::Apis::Core::Hashable
|
9192
9262
|
|
9263
|
+
# Enable entity extraction in conversation messages on [agent assist stage](
|
9264
|
+
# https://cloud.google.com/dialogflow/priv/docs/contact-center/basics#stages).
|
9265
|
+
# If unspecified, defaults to false. Currently, this feature is not general
|
9266
|
+
# available, please contact Google to get access.
|
9267
|
+
# Corresponds to the JSON property `enableEntityExtraction`
|
9268
|
+
# @return [Boolean]
|
9269
|
+
attr_accessor :enable_entity_extraction
|
9270
|
+
alias_method :enable_entity_extraction?, :enable_entity_extraction
|
9271
|
+
|
9193
9272
|
# Enable sentiment analysis in conversation messages on [agent assist stage](
|
9194
9273
|
# https://cloud.google.com/dialogflow/priv/docs/contact-center/basics#stages).
|
9195
9274
|
# If unspecified, defaults to false. Sentiment analysis inspects user input and
|
@@ -9214,6 +9293,7 @@ module Google
|
|
9214
9293
|
|
9215
9294
|
# Update properties of this object
|
9216
9295
|
def update!(**args)
|
9296
|
+
@enable_entity_extraction = args[:enable_entity_extraction] if args.key?(:enable_entity_extraction)
|
9217
9297
|
@enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis)
|
9218
9298
|
end
|
9219
9299
|
end
|
@@ -9523,6 +9603,93 @@ module Google
|
|
9523
9603
|
end
|
9524
9604
|
end
|
9525
9605
|
|
9606
|
+
# Defines the hand off to a live agent, typically on which external agent
|
9607
|
+
# service provider to connect to a conversation. Currently, this feature is not
|
9608
|
+
# general available, please contact Google to get access.
|
9609
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
|
9610
|
+
include Google::Apis::Core::Hashable
|
9611
|
+
|
9612
|
+
# Configuration specific to LivePerson (https://www.liveperson.com).
|
9613
|
+
# Corresponds to the JSON property `livePersonConfig`
|
9614
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig]
|
9615
|
+
attr_accessor :live_person_config
|
9616
|
+
|
9617
|
+
# Configuration specific to Salesforce Live Agent.
|
9618
|
+
# Corresponds to the JSON property `salesforceLiveAgentConfig`
|
9619
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig]
|
9620
|
+
attr_accessor :salesforce_live_agent_config
|
9621
|
+
|
9622
|
+
def initialize(**args)
|
9623
|
+
update!(**args)
|
9624
|
+
end
|
9625
|
+
|
9626
|
+
# Update properties of this object
|
9627
|
+
def update!(**args)
|
9628
|
+
@live_person_config = args[:live_person_config] if args.key?(:live_person_config)
|
9629
|
+
@salesforce_live_agent_config = args[:salesforce_live_agent_config] if args.key?(:salesforce_live_agent_config)
|
9630
|
+
end
|
9631
|
+
end
|
9632
|
+
|
9633
|
+
# Configuration specific to LivePerson (https://www.liveperson.com).
|
9634
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig
|
9635
|
+
include Google::Apis::Core::Hashable
|
9636
|
+
|
9637
|
+
# Required. Account number of the LivePerson account to connect. This is the
|
9638
|
+
# account number you input at the login page.
|
9639
|
+
# Corresponds to the JSON property `accountNumber`
|
9640
|
+
# @return [String]
|
9641
|
+
attr_accessor :account_number
|
9642
|
+
|
9643
|
+
def initialize(**args)
|
9644
|
+
update!(**args)
|
9645
|
+
end
|
9646
|
+
|
9647
|
+
# Update properties of this object
|
9648
|
+
def update!(**args)
|
9649
|
+
@account_number = args[:account_number] if args.key?(:account_number)
|
9650
|
+
end
|
9651
|
+
end
|
9652
|
+
|
9653
|
+
# Configuration specific to Salesforce Live Agent.
|
9654
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
|
9655
|
+
include Google::Apis::Core::Hashable
|
9656
|
+
|
9657
|
+
# Required. Live Agent chat button ID.
|
9658
|
+
# Corresponds to the JSON property `buttonId`
|
9659
|
+
# @return [String]
|
9660
|
+
attr_accessor :button_id
|
9661
|
+
|
9662
|
+
# Required. Live Agent deployment ID.
|
9663
|
+
# Corresponds to the JSON property `deploymentId`
|
9664
|
+
# @return [String]
|
9665
|
+
attr_accessor :deployment_id
|
9666
|
+
|
9667
|
+
# Required. Domain of the Live Agent endpoint for this agent. You can find the
|
9668
|
+
# endpoint URL in the `Live Agent settings` page. For example if URL has the
|
9669
|
+
# form https://d.la4-c2-phx.salesforceliveagent.com/..., you should fill in d.
|
9670
|
+
# la4-c2-phx.salesforceliveagent.com.
|
9671
|
+
# Corresponds to the JSON property `endpointDomain`
|
9672
|
+
# @return [String]
|
9673
|
+
attr_accessor :endpoint_domain
|
9674
|
+
|
9675
|
+
# Required. The organization ID of the Salesforce account.
|
9676
|
+
# Corresponds to the JSON property `organizationId`
|
9677
|
+
# @return [String]
|
9678
|
+
attr_accessor :organization_id
|
9679
|
+
|
9680
|
+
def initialize(**args)
|
9681
|
+
update!(**args)
|
9682
|
+
end
|
9683
|
+
|
9684
|
+
# Update properties of this object
|
9685
|
+
def update!(**args)
|
9686
|
+
@button_id = args[:button_id] if args.key?(:button_id)
|
9687
|
+
@deployment_id = args[:deployment_id] if args.key?(:deployment_id)
|
9688
|
+
@endpoint_domain = args[:endpoint_domain] if args.key?(:endpoint_domain)
|
9689
|
+
@organization_id = args[:organization_id] if args.key?(:organization_id)
|
9690
|
+
end
|
9691
|
+
end
|
9692
|
+
|
9526
9693
|
# The request message for Agents.ImportAgent.
|
9527
9694
|
class GoogleCloudDialogflowV2beta1ImportAgentRequest
|
9528
9695
|
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.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210329"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1558,6 +1558,24 @@ module Google
|
|
1558
1558
|
include Google::Apis::Core::JsonObjectSupport
|
1559
1559
|
end
|
1560
1560
|
|
1561
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
|
1562
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1563
|
+
|
1564
|
+
include Google::Apis::Core::JsonObjectSupport
|
1565
|
+
end
|
1566
|
+
|
1567
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig
|
1568
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1569
|
+
|
1570
|
+
include Google::Apis::Core::JsonObjectSupport
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
|
1574
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1575
|
+
|
1576
|
+
include Google::Apis::Core::JsonObjectSupport
|
1577
|
+
end
|
1578
|
+
|
1561
1579
|
class GoogleCloudDialogflowV2beta1ImportAgentRequest
|
1562
1580
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1563
1581
|
|
@@ -2929,6 +2947,10 @@ module Google
|
|
2929
2947
|
|
2930
2948
|
property :session_info, as: 'sessionInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3SessionInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3SessionInfo::Representation
|
2931
2949
|
|
2950
|
+
property :text, as: 'text'
|
2951
|
+
property :transcript, as: 'transcript'
|
2952
|
+
property :trigger_event, as: 'triggerEvent'
|
2953
|
+
property :trigger_intent, as: 'triggerIntent'
|
2932
2954
|
end
|
2933
2955
|
end
|
2934
2956
|
|
@@ -3593,6 +3615,10 @@ module Google
|
|
3593
3615
|
|
3594
3616
|
property :session_info, as: 'sessionInfo', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1SessionInfo, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1SessionInfo::Representation
|
3595
3617
|
|
3618
|
+
property :text, as: 'text'
|
3619
|
+
property :transcript, as: 'transcript'
|
3620
|
+
property :trigger_event, as: 'triggerEvent'
|
3621
|
+
property :trigger_intent, as: 'triggerIntent'
|
3596
3622
|
end
|
3597
3623
|
end
|
3598
3624
|
|
@@ -4603,6 +4629,8 @@ module Google
|
|
4603
4629
|
property :display_name, as: 'displayName'
|
4604
4630
|
property :human_agent_assistant_config, as: 'humanAgentAssistantConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig::Representation
|
4605
4631
|
|
4632
|
+
property :human_agent_handoff_config, as: 'humanAgentHandoffConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig::Representation
|
4633
|
+
|
4606
4634
|
property :language_code, as: 'languageCode'
|
4607
4635
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1LoggingConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1LoggingConfig::Representation
|
4608
4636
|
|
@@ -4813,6 +4841,8 @@ module Google
|
|
4813
4841
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig
|
4814
4842
|
# @private
|
4815
4843
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4844
|
+
property :end_user_suggestion_config, as: 'endUserSuggestionConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig::Representation
|
4845
|
+
|
4816
4846
|
property :human_agent_suggestion_config, as: 'humanAgentSuggestionConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig::Representation
|
4817
4847
|
|
4818
4848
|
property :message_analysis_config, as: 'messageAnalysisConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig::Representation
|
@@ -4832,6 +4862,7 @@ module Google
|
|
4832
4862
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
|
4833
4863
|
# @private
|
4834
4864
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4865
|
+
property :enable_entity_extraction, as: 'enableEntityExtraction'
|
4835
4866
|
property :enable_sentiment_analysis, as: 'enableSentimentAnalysis'
|
4836
4867
|
end
|
4837
4868
|
end
|
@@ -4924,6 +4955,33 @@ module Google
|
|
4924
4955
|
end
|
4925
4956
|
end
|
4926
4957
|
|
4958
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
|
4959
|
+
# @private
|
4960
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4961
|
+
property :live_person_config, as: 'livePersonConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig::Representation
|
4962
|
+
|
4963
|
+
property :salesforce_live_agent_config, as: 'salesforceLiveAgentConfig', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig::Representation
|
4964
|
+
|
4965
|
+
end
|
4966
|
+
end
|
4967
|
+
|
4968
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig
|
4969
|
+
# @private
|
4970
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4971
|
+
property :account_number, as: 'accountNumber'
|
4972
|
+
end
|
4973
|
+
end
|
4974
|
+
|
4975
|
+
class GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
|
4976
|
+
# @private
|
4977
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4978
|
+
property :button_id, as: 'buttonId'
|
4979
|
+
property :deployment_id, as: 'deploymentId'
|
4980
|
+
property :endpoint_domain, as: 'endpointDomain'
|
4981
|
+
property :organization_id, as: 'organizationId'
|
4982
|
+
end
|
4983
|
+
end
|
4984
|
+
|
4927
4985
|
class GoogleCloudDialogflowV2beta1ImportAgentRequest
|
4928
4986
|
# @private
|
4929
4987
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3098,7 +3098,7 @@ module Google
|
|
3098
3098
|
# Optional. Filter on message fields. Currently predicates on `create_time` and `
|
3099
3099
|
# create_time_epoch_microseconds` are supported. `create_time` only support
|
3100
3100
|
# milliseconds accuracy. E.g., `create_time_epoch_microseconds >
|
3101
|
-
# 1551790877964485` or `create_time > 2017-01-15T01:30:15.01Z`. For more
|
3101
|
+
# 1551790877964485` or `create_time > "2017-01-15T01:30:15.01Z"`. For more
|
3102
3102
|
# information about filtering, see [API Filtering](https://aip.dev/160).
|
3103
3103
|
# @param [Fixnum] page_size
|
3104
3104
|
# Optional. The maximum number of items to return in a single page. By default
|
@@ -3369,7 +3369,7 @@ module Google
|
|
3369
3369
|
# Optional. Filter on suggestions fields. Currently predicates on `create_time`
|
3370
3370
|
# and `create_time_epoch_microseconds` are supported. `create_time` only support
|
3371
3371
|
# milliseconds accuracy. E.g., `create_time_epoch_microseconds >
|
3372
|
-
# 1551790877964485` or `create_time > 2017-01-15T01:30:15.01Z` For more
|
3372
|
+
# 1551790877964485` or `create_time > "2017-01-15T01:30:15.01Z"` For more
|
3373
3373
|
# information about filtering, see [API Filtering](https://aip.dev/160).
|
3374
3374
|
# @param [Fixnum] page_size
|
3375
3375
|
# Optional. The maximum number of items to return in a single page. The default
|
@@ -6548,7 +6548,7 @@ module Google
|
|
6548
6548
|
# Optional. Filter on message fields. Currently predicates on `create_time` and `
|
6549
6549
|
# create_time_epoch_microseconds` are supported. `create_time` only support
|
6550
6550
|
# milliseconds accuracy. E.g., `create_time_epoch_microseconds >
|
6551
|
-
# 1551790877964485` or `create_time > 2017-01-15T01:30:15.01Z`. For more
|
6551
|
+
# 1551790877964485` or `create_time > "2017-01-15T01:30:15.01Z"`. For more
|
6552
6552
|
# information about filtering, see [API Filtering](https://aip.dev/160).
|
6553
6553
|
# @param [Fixnum] page_size
|
6554
6554
|
# Optional. The maximum number of items to return in a single page. By default
|
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.10.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: 2021-
|
11
|
+
date: 2021-04-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.10.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v2beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|