Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Plays audio from a file in Telephony Gateway.
Instance Attribute Summary collapse
-
#audio_uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
constructor
A new instance of GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio.
9459 9460 9461 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9459 def initialize(**args) update!(**args) end |
Instance Attribute Details
#audio_uri ⇒ String
Required. URI to a Google Cloud Storage object containing the audio to play, e.
g., "gs://bucket/object". The object must contain a single channel (mono) of
linear PCM audio (2 bytes / sample) at 8kHz. This object must be readable by
the service-@gcp-sa-dialogflow.iam.gserviceaccount.com service account where
is the number of the Telephony Gateway project (usually the same as the
Dialogflow agent project). If the Google Cloud Storage bucket is in the
Telephony Gateway project, this permission is added by default when enabling
the Dialogflow V2 API. For audio from other sources, consider using the
TelephonySynthesizeSpeech message with SSML.
Corresponds to the JSON property audioUri
9457 9458 9459 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9457 def audio_uri @audio_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9464 9465 9466 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 9464 def update!(**args) @audio_uri = args[:audio_uri] if args.key?(:audio_uri) end |