Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest

Returns a new instance of GoogleCloudDialogflowV2beta1OriginalDetectIntentRequest.



5451
5452
5453
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 5451

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#payloadHash<String,Object>

Optional. This field is set to the value of the QueryParameters.payload field passed in the request. Some integrations that query a Dialogflow agent may provide additional information in the payload. In particular for the Telephony Gateway this field has the form:

`
"telephony": `
"caller_id": "+18558363987"
`
`

Note: The caller ID field (caller_id) will be redacted for Standard Edition agents and populated with the caller ID in E.164 format for Enterprise Edition agents. Corresponds to the JSON property payload

Returns:

  • (Hash<String,Object>)


5437
5438
5439
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 5437

def payload
  @payload
end

#sourceString

The source of this request, e.g., google, facebook, slack. It is set by Dialogflow-owned servers. Corresponds to the JSON property source

Returns:

  • (String)


5443
5444
5445
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 5443

def source
  @source
end

#versionString

Optional. The version of the protocol used for this request. This field is AoG-specific. Corresponds to the JSON property version

Returns:

  • (String)


5449
5450
5451
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 5449

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5456
5457
5458
5459
5460
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 5456

def update!(**args)
  @payload = args[:payload] if args.key?(:payload)
  @source = args[:source] if args.key?(:source)
  @version = args[:version] if args.key?(:version)
end