package telegraml

  1. Overview
  2. Docs
type venue = {
  1. location : Location.location;
  2. title : string;
  3. address : string;
  4. foursquare_id : string option;
}

Represents an event venue in a chat

val create : location: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

Read a venue out of some JSON

module Out : sig ... end