module Document:sig
..end
type
document = {
|
file_id : |
|
thumb : |
|
file_name : |
|
mime_type : |
|
file_size : |
Create a `document` in a concise manner
val create : file_id:string ->
?thumb:Api.PhotoSize.photo_size option ->
?file_name:string option ->
?mime_type:string option ->
?file_size:int option -> unit -> document
val read : Yojson.Safe.json -> document