19 lines
404 B
Python
19 lines
404 B
Python
"""
|
|
Created by auto_sdk on 2021.04.15
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiEduPeriodCreateRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.open_period = None
|
|
self.operator = None
|
|
self.super_id = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.edu.period.create'
|