module Lark::Apis::Bot

Public Instance Methods

add(chat_id) click to toggle source
# File lib/lark/apis/bot.rb, line 8
def add(chat_id)
  post 'bot/v3/add', {chat_id: chat_id}
end
info() click to toggle source
# File lib/lark/apis/bot.rb, line 4
def info
  get 'bot/v3/info/'
end
remove(chat_id) click to toggle source
# File lib/lark/apis/bot.rb, line 12
def remove(chat_id)
  post 'bot/v3/remove', {chat_id: chat_id}
end