16 lines
326 B
Python
16 lines
326 B
Python
"""
|
|
Created by auto_sdk on 2020.11.06
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiWorkspaceProjectQueryRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.workspace.project.query'
|