Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/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.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
Returns a new instance of GoogleCloudDialogflowV2beta1IntentMessageTelephonyPlayAudio
      3457 3458 3459  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3457 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-<Project
Number>@gcp-sa-dialogflow.iam.gserviceaccount.com service account
where TelephonySynthesizeSpeech message with SSML.
Corresponds to the JSON property audioUri
      3455 3456 3457  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3455 def audio_uri @audio_uri end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3462 3463 3464  | 
    
      # File 'generated/google/apis/dialogflow_v2/classes.rb', line 3462 def update!(**args) @audio_uri = args[:audio_uri] if args.key?(:audio_uri) end  |