module Document:sig
..end
type
document = {
|
file_id : |
|
thumb : |
|
file_name : |
|
mime_type : |
|
file_size : |
val create : file_id:string ->
?thumb:TelegramApi.PhotoSize.photo_size option ->
?file_name:string option ->
?mime_type:string option ->
?file_size:int option -> unit -> document
document
in a concise manner
Read a document
out of some JSON
val read : Yojson.Safe.json -> document
module Out:sig
..end