OapiChatbotInstallRequest.py 328 B

1234567891011121314
  1. '''
  2. Created by auto_sdk on 2019.12.03
  3. '''
  4. from dingtalk.api.base import RestApi
  5. class OapiChatbotInstallRequest(RestApi):
  6. def __init__(self,url=None):
  7. RestApi.__init__(self,url)
  8. self.chatbot_vo = None
  9. def getHttpMethod(self):
  10. return 'POST'
  11. def getapiname(self):
  12. return 'dingtalk.oapi.chatbot.install'