19 lines
421 B
Python
19 lines
421 B
Python
"""
|
|
Created by auto_sdk on 2019.07.01
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiRobotMessageStatisticsListRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.page = None
|
|
self.page_size = None
|
|
self.push_ids = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.robot.message.statistics.list'
|