module PhotoSize:sig
..end
type
photo_size = {
|
file_id : |
|
width : |
|
height : |
|
file_size : |
Create a `photo_size` in a concise manner
val create : file_id:string ->
width:int ->
height:int -> ?file_size:int option -> unit -> photo_size
val read : Yojson.Safe.json -> photo_size
module Out:sig
..end