21 lines
457 B
Python
21 lines
457 B
Python
"""
|
|
Created by auto_sdk on 2021.04.15
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiEduStudentCreateRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.biz_id = None
|
|
self.class_id = None
|
|
self.name = None
|
|
self.operator = None
|
|
self.student_no = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.edu.student.create'
|