OapiChatUpdatebanwordsRequest.py 409 B

1234567891011121314151617
  1. '''
  2. Created by auto_sdk on 2020.02.06
  3. '''
  4. from dingtalk.api.base import RestApi
  5. class OapiChatUpdatebanwordsRequest(RestApi):
  6. def __init__(self,url=None):
  7. RestApi.__init__(self,url)
  8. self.ban_words_time = None
  9. self.chatid = None
  10. self.type = None
  11. self.userid_list = None
  12. def getHttpMethod(self):
  13. return 'POST'
  14. def getapiname(self):
  15. return 'dingtalk.oapi.chat.updatebanwords'