12345678910111213141516 |
- '''
- Created by auto_sdk on 2019.11.13
- '''
- from dingtalk.api.base import RestApi
- class OapiCateringCoopcontactGetRequest(RestApi):
- def __init__(self,url=None):
- RestApi.__init__(self,url)
- self.caller_userid = None
- self.corp_end_corp_id = None
- self.shop_id = None
- def getHttpMethod(self):
- return 'POST'
- def getapiname(self):
- return 'dingtalk.oapi.catering.coopcontact.get'
|