| 
    TDLib
    
   | 
 
Inherits td::td_api::Object.
Public Member Functions | |
| voiceNote () | |
| voiceNote (int32 duration_, bytes const &waveform_, string const &mime_type_, object_ptr< SpeechRecognitionResult > &&speech_recognition_result_, object_ptr< file > &&voice_) | |
| std::int32_t | get_id () const final | 
| void | store (TlStorerToString &s, const char *field_name) const final | 
  Public Member Functions inherited from td::TlObject | |
| virtual void | store (TlStorerUnsafe &s) const | 
| virtual void | store (TlStorerCalcLength &s) const | 
| TlObject ()=default | |
| TlObject (const TlObject &)=delete | |
| TlObject & | operator= (const TlObject &)=delete | 
| TlObject (TlObject &&)=default | |
| TlObject & | operator= (TlObject &&)=default | 
| virtual | ~TlObject ()=default | 
Public Attributes | |
| int32 | duration_ | 
| Duration of the voice note, in seconds; as defined by the sender.  | |
| bytes | waveform_ | 
| A waveform representation of the voice note in 5-bit format.  | |
| string | mime_type_ | 
| MIME type of the file; as defined by the sender.  | |
| object_ptr< SpeechRecognitionResult > | speech_recognition_result_ | 
| Result of speech recognition in the voice note; may be null.  | |
| object_ptr< file > | voice_ | 
| File containing the voice note.  | |
Static Public Attributes | |
| static const std::int32_t | ID = -1175302923 | 
| Identifier uniquely determining a type of the object.  | |
Describes a voice note. The voice note must be encoded with the Opus codec, and stored inside an OGG container. Voice notes can have only a single audio channel.
| td::td_api::voiceNote::voiceNote | ( | ) | 
Describes a voice note. The voice note must be encoded with the Opus codec, and stored inside an OGG container. Voice notes can have only a single audio channel.
| td::td_api::voiceNote::voiceNote | ( | int32 | duration_, | 
| bytes const & | waveform_, | ||
| string const & | mime_type_, | ||
| object_ptr< SpeechRecognitionResult > && | speech_recognition_result_, | ||
| object_ptr< file > && | voice_ | ||
| ) | 
Describes a voice note. The voice note must be encoded with the Opus codec, and stored inside an OGG container. Voice notes can have only a single audio channel.
| [in] | duration_ | Duration of the voice note, in seconds; as defined by the sender. | 
| [in] | waveform_ | A waveform representation of the voice note in 5-bit format. | 
| [in] | mime_type_ | MIME type of the file; as defined by the sender. | 
| [in] | speech_recognition_result_ | Result of speech recognition in the voice note; may be null. | 
| [in] | voice_ | File containing the voice note. | 
      
  | 
  inlinefinalvirtual | 
Returns identifier uniquely determining a type of the object.
Implements td::TlObject.
      
  | 
  finalvirtual | 
Helper function for to_string method. Appends string representation of the object to the storer.
| [in] | s | Storer to which object string representation will be appended. | 
| [in] | field_name | Object field_name if applicable. | 
Implements td::TlObject.