Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents the contents of the original request that was passed to
the [Streaming]DetectIntent
call.
Instance Attribute Summary collapse
-
#payload ⇒ Hash<String,Object>
Optional.
-
#source ⇒ String
The source of this request, e.g.,
google
,facebook
,slack
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest
constructor
A new instance of GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest
Returns a new instance of GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest
3345 3346 3347 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3345 def initialize(**args) update!(**args) end |
Instance Attribute Details
#payload ⇒ Hash<String,Object>
Optional. This field is set to the value of QueryParameters.payload
field
passed in the request.
Corresponds to the JSON property payload
3337 3338 3339 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3337 def payload @payload end |
#source ⇒ String
The source of this request, e.g., google
, facebook
, slack
. It is set
by Dialogflow-owned servers.
Corresponds to the JSON property source
3343 3344 3345 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3343 def source @source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3350 3351 3352 3353 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 3350 def update!(**args) @payload = args[:payload] if args.key?(:payload) @source = args[:source] if args.key?(:source) end |