18 lines
356 B
Python
18 lines
356 B
Python
"""
|
|
Created by auto_sdk on 2019.12.17
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiDepartmentGetRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.id = None
|
|
self.lang = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'GET'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.department.get'
|