sig
  type location = { longitude : float; latitude : float; }
  val create :
    longitude:float ->
    latitude:float -> unit -> TelegramApi.Location.location
  val read : Yojson.Safe.json -> TelegramApi.Location.location
  module Out :
    sig
      type location = {
        chat_id : int;
        latitude : float;
        longitude : float;
        disable_notification : bool;
        reply_to_message_id : int option;
        reply_markup : TelegramApi.ReplyMarkup.reply_markup option;
      }
      val create :
        chat_id:int ->
        latitude:float ->
        longitude:float ->
        ?disable_notification:bool ->
        ?reply_to:int option ->
        ?reply_markup:TelegramApi.ReplyMarkup.reply_markup option ->
        unit -> TelegramApi.Location.Out.location
      val prepare : TelegramApi.Location.Out.location -> string
    end
end