Class: Google::Apis::SpeechV1beta1::SyncRecognizeRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpeechV1beta1::SyncRecognizeRequest
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/speech_v1beta1/classes.rb,
generated/google/apis/speech_v1beta1/representations.rb,
generated/google/apis/speech_v1beta1/representations.rb 
Overview
The top-level message sent by the client for the SyncRecognize method.
Instance Attribute Summary collapse
- 
  
    
      #audio  ⇒ Google::Apis::SpeechV1beta1::RecognitionAudio 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains audio data in the encoding specified in the
RecognitionConfig. - 
  
    
      #config  ⇒ Google::Apis::SpeechV1beta1::RecognitionConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides information to the recognizer that specifies how to process the request.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SyncRecognizeRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SyncRecognizeRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SyncRecognizeRequest
Returns a new instance of SyncRecognizeRequest
      446 447 448  | 
    
      # File 'generated/google/apis/speech_v1beta1/classes.rb', line 446 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#audio ⇒ Google::Apis::SpeechV1beta1::RecognitionAudio
Contains audio data in the encoding specified in the RecognitionConfig.
Either content or uri must be supplied. Supplying both or neither
returns google.rpc.Code.INVALID_ARGUMENT. See
audio limits.
Corresponds to the JSON property audio
      438 439 440  | 
    
      # File 'generated/google/apis/speech_v1beta1/classes.rb', line 438 def audio @audio end  | 
  
#config ⇒ Google::Apis::SpeechV1beta1::RecognitionConfig
Provides information to the recognizer that specifies how to process the
request.
Corresponds to the JSON property config
      444 445 446  | 
    
      # File 'generated/google/apis/speech_v1beta1/classes.rb', line 444 def config @config end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      451 452 453 454  | 
    
      # File 'generated/google/apis/speech_v1beta1/classes.rb', line 451 def update!(**args) @audio = args[:audio] if args.key?(:audio) @config = args[:config] if args.key?(:config) end  |