18 lines
408 B
Python
18 lines
408 B
Python
"""
|
|
Created by auto_sdk on 2021.03.17
|
|
"""
|
|
from api.base import RestApi
|
|
|
|
|
|
class OapiKacOpenliveWhiteUsersBatchDeleteRequest(RestApi):
|
|
def __init__(self, url=None):
|
|
RestApi.__init__(self, url)
|
|
self.live_id = None
|
|
self.user_ids = None
|
|
|
|
def getHttpMethod(self):
|
|
return 'POST'
|
|
|
|
def getapiname(self):
|
|
return 'dingtalk.oapi.kac.openlive.white_users.batch_delete'
|