From c8d40dccabaaa406faed6c0797a92bac811c9d0f Mon Sep 17 00:00:00 2001 From: Oleg Morozenkov Date: Tue, 5 Jun 2018 19:07:27 +0300 Subject: Update docs --- docs/_voice_8h_source.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'docs/_voice_8h_source.html') diff --git a/docs/_voice_8h_source.html b/docs/_voice_8h_source.html index cd547b8..be382da 100644 --- a/docs/_voice_8h_source.html +++ b/docs/_voice_8h_source.html @@ -83,20 +83,20 @@ $(document).ready(function(){initNavTree('_voice_8h_source.html','');});
Voice.h
-Go to the documentation of this file.
1 //
2 // Created by Andrea Giove on 17/04/16.
3 //
4 
5 #ifndef TGBOT_VOICE_H
6 #define TGBOT_VOICE_H
7 
8 #include <memory>
9 #include <string>
10 
11 namespace TgBot {
12 
17 class Voice {
18 public:
19  typedef std::shared_ptr<Voice> Ptr;
20 
24  std::string file_id;
25 
29  int32_t duration;
30 
34  std::string mime_type;
35 
39  int32_t file_size;
40 };
41 }
42 
43 #endif //TGBOT_VOICE_H
std::string file_id
Definition: Voice.h:24
-
Definition: Api.h:46
-
int32_t duration
Definition: Voice.h:29
-
int32_t file_size
Definition: Voice.h:39
-
std::shared_ptr< Voice > Ptr
Definition: Voice.h:19
- -
std::string mime_type
Definition: Voice.h:34
+Go to the documentation of this file.
1 //
2 // Created by Andrea Giove on 17/04/16.
3 //
4 
5 #ifndef TGBOT_VOICE_H
6 #define TGBOT_VOICE_H
7 
8 #include <memory>
9 #include <string>
10 
11 namespace TgBot {
12 
18 class Voice {
19 public:
20  typedef std::shared_ptr<Voice> Ptr;
21 
25  std::string file_id;
26 
30  int32_t duration;
31 
35  std::string mime_type;
36 
40  int32_t file_size;
41 };
42 }
43 
44 #endif //TGBOT_VOICE_H
std::string file_id
Unique identifier for this file.
Definition: Voice.h:25
+
Definition: Api.h:47
+
int32_t duration
Duration of the audio in seconds as defined by sender.
Definition: Voice.h:30
+
int32_t file_size
Optional. File size.
Definition: Voice.h:40
+
std::shared_ptr< Voice > Ptr
Definition: Voice.h:20
+
This object represents a voice note.
Definition: Voice.h:18
+
std::string mime_type
Optional. MIME type of the file as defined by sender;.
Definition: Voice.h:35