class ByRobot::Company

Public Class Methods

get_companys(params={}) click to toggle source
# File lib/by_robot/company.rb, line 5
def self.get_companys(params={})
  Request.get('/openapi/v1/company/getCompanys', params)
end
get_phones(params={}) click to toggle source
# File lib/by_robot/company.rb, line 9
def self.get_phones(params={})
  Request.check_required_params(params, %w(companyId))
  Request.get('openapi/v1/company/getPhones', params)
end
get_robots(params={}) click to toggle source
# File lib/by_robot/company.rb, line 14
def self.get_robots(params={})
  Request.check_required_params(params, %w(companyId))
  Request.get('openapi/v1/company/getRobots', params)
end