17 lines
376 B
Python
17 lines
376 B
Python
"""
|
|
Created by auto_sdk on 2020.04.23
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiRhinoMosSpaceDeviceCheckInListRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.request = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.rhino.mos.space.device.check.in.list'
|