CorpChatbotUpdatebychatbotidRequest.py 495 B

1234567891011121314151617181920
  1. '''
  2. Created by auto_sdk on 2019.07.03
  3. '''
  4. from dingtalk.api.base import RestApi
  5. class CorpChatbotUpdatebychatbotidRequest(RestApi):
  6. def __init__(self,url=None):
  7. RestApi.__init__(self,url)
  8. self.breif = None
  9. self.chatbot_id = None
  10. self.description = None
  11. self.icon = None
  12. self.name = None
  13. self.preview_media_id = None
  14. self.update_type = None
  15. def getHttpMethod(self):
  16. return 'POST'
  17. def getapiname(self):
  18. return 'dingtalk.corp.chatbot.updatebychatbotid'