OapiEduHomeworkStudentCommentUpdateRequest.py 605 B

12345678910111213141516171819202122232425
  1. '''
  2. Created by auto_sdk on 2020.04.29
  3. '''
  4. from dingtalk.api.base import RestApi
  5. class OapiEduHomeworkStudentCommentUpdateRequest(RestApi):
  6. def __init__(self,url=None):
  7. RestApi.__init__(self,url)
  8. self.attributes = None
  9. self.biz_code = None
  10. self.class_id = None
  11. self.comment = None
  12. self.comment_id = None
  13. self.hw_id = None
  14. self.media = None
  15. self.photo = None
  16. self.student_id = None
  17. self.student_name = None
  18. self.teacher_userid = None
  19. self.video = None
  20. def getHttpMethod(self):
  21. return 'POST'
  22. def getapiname(self):
  23. return 'dingtalk.oapi.edu.homework.student.comment.update'