1234567891011121314151617 |
- '''
- Created by auto_sdk on 2021.05.27
- '''
- from dingtalk.api.base import RestApi
- class OapiEduCourseParticipantListRequest(RestApi):
- def __init__(self,url=None):
- RestApi.__init__(self,url)
- self.course_code = None
- self.cursor = None
- self.op_userid = None
- self.size = None
- def getHttpMethod(self):
- return 'POST'
- def getapiname(self):
- return 'dingtalk.oapi.edu.course.participant.list'
|