Advertisement
Vladimir3261

Untitled

Dec 8th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * Created by vladimir on 12/8/17.
  3.  */
  4.  
  5. let scheme = [
  6.     {
  7.         type: "photo", // required
  8.         photo: { // required
  9.             "photo_small": "http://...jpg", // required
  10.             "photo_medium": "http://...jpg", // optional
  11.             "photo_big": "http://...jpg", // optional
  12.         }
  13.     },
  14.  
  15.     {
  16.         "type": "link", // required
  17.         "link": {
  18.             "url": "http://...", // required
  19.             "chat_id": "10", // required
  20.             "image": "http://..." // optional
  21.         }
  22.     }
  23. ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement