20 lines
460 B
Python
20 lines
460 B
Python
"""
|
|
Created by auto_sdk on 2020.06.28
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiDdpaasObjectdataListRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.app_uuid = None
|
|
self.current_operator_userid = None
|
|
self.data_id_list = None
|
|
self.form_code = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.ddpaas.objectdata.list'
|