Module TelegramApi.Venue

module Venue: sig .. end

type venue = {
   location : TelegramApi.Location.location;
   title : string;
   address : string;
   foursquare_id : string option;
}
Represents an event venue in a chat
val create : location:TelegramApi.Location.location ->
title:string ->
address:string ->
?foursquare_id:string option -> unit -> venue
Create a venue in a concise manner

Read a venue out of some JSON

val read : Yojson.Safe.json -> venue
module Out: sig .. end