OapiEduHomeworkStudentCommentCreateRequest.py 580 B

123456789101112131415161718192021222324
  1. '''
  2. Created by auto_sdk on 2020.04.28
  3. '''
  4. from dingtalk.api.base import RestApi
  5. class OapiEduHomeworkStudentCommentCreateRequest(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.hw_id = None
  13. self.media = None
  14. self.photo = None
  15. self.student_id = None
  16. self.student_name = None
  17. self.teacher_userid = None
  18. self.video = None
  19. def getHttpMethod(self):
  20. return 'POST'
  21. def getapiname(self):
  22. return 'dingtalk.oapi.edu.homework.student.comment.create'