19 lines
412 B
Python
19 lines
412 B
Python
"""
|
|
Created by auto_sdk on 2021.02.07
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiLiveGroupliveStatisticsRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.cid = None
|
|
self.live_uuid = None
|
|
self.open_id = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.live.grouplive.statistics'
|