Api.prototype.getChatMember = function (chatId, userId) {
  return yarl.get(this.url + 'getChatMember', { query: {
    chat_id: chatId,
    user_id: userId
  }, json: true });