module Venue:sig
..end
type
venue = {
|
location : |
|
title : |
|
address : |
|
foursquare_id : |
val create : location:TelegramApi.Location.location ->
title:string ->
address:string ->
?foursquare_id:string option -> unit -> venue
venue
in a concise manner
Read a venue
out of some JSON
val read : Yojson.Safe.json -> venue
module Out:sig
..end