-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDocument_T.m
38 lines (38 loc) · 1.25 KB
/
Document_T.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
function document = Document_T(file_id, file_unique_id, varargin)
% Document_T - This object represents a general file (as opposed to photos,
% voice messages and audio files).
%
% file_id String Identifier for this file, which can be used to download
% or reuse the file
%
% file_unique_id String Unique identifier for this file, which is
% supposed to be the same over time and for different bots. Can't be used
% to download or reuse the file.
%
% thumb PhotoSize Optional. Document thumbnail as defined by sender
%
% file_name String Optional. Original filename as defined by sender
%
% mime_type String Optional. MIME type of the file as defined by sender
%
% file_size Integer Optional. File size
%
document = struct;
document.file_id = (file_id);
document.file_unique_id = (file_unique_id);
while ~isempty(varargin)
switch lower(varargin{1})
case 'thumb'
document.thumb = varargin{2};
case 'file_name'
document.file_name = varargin{2};
case 'mime_type'
document.mime_type = varargin{2};
case 'file_size'
document.file_size = varargin{2};
otherwise
error(['Unexpected option: ' varargin{1}])
end
varargin(1:2) = [];
end
end