module Out:sig
..end
type
photo_size = {
|
chat_id : |
|
photo : |
|
: |
|
disable_notification : |
|
reply_to_message_id : |
|
reply_markup : |
photo
field can either be an existing file id or the raw bytes from a fileval create : chat_id:int ->
photo:string ->
?caption:string option ->
?disable_notification:bool ->
?reply_to:int option ->
?reply_markup:TelegramApi.ReplyMarkup.reply_markup option ->
unit -> photo_size
photo_size
in a concise manner
Prepare a photo_size
for sending -- used in the case of a file id
val prepare : photo_size -> string
photo_size
for sending -- used in the case of the raw bytesval prepare_multipart : photo_size -> string -> string Lwt.t