1234567891011121314151617 |
- '''
- Created by auto_sdk on 2021.05.28
- '''
- from dingtalk.api.base import RestApi
- class OapiEduCourseParticipantBatchaddRequest(RestApi):
- def __init__(self,url=None):
- RestApi.__init__(self,url)
- self.course_codes = None
- self.course_participants = None
- self.op_userid = None
- self.participant_corpid = None
- def getHttpMethod(self):
- return 'POST'
- def getapiname(self):
- return 'dingtalk.oapi.edu.course.participant.batchadd'
|