12345678910111213141516171819 |
- '''
- Created by auto_sdk on 2022.04.12
- '''
- from dingtalk.api.base import RestApi
- class OapiCrmContactCreateRequest(RestApi):
- def __init__(self,url=None):
- RestApi.__init__(self,url)
- self.contact_name = None
- self.contact_phone = None
- self.contact_position_list = None
- self.creator_userid = None
- self.customer_instance_id = None
- self.provider_corpid = None
- def getHttpMethod(self):
- return 'POST'
- def getapiname(self):
- return 'dingtalk.oapi.crm.contact.create'
|