OapiUserGetByMobileRequest.py 327 B

1234567891011121314
  1. '''
  2. Created by auto_sdk on 2019.10.11
  3. '''
  4. from dingtalk.api.base import RestApi
  5. class OapiUserGetByMobileRequest(RestApi):
  6. def __init__(self,url=None):
  7. RestApi.__init__(self,url)
  8. self.mobile = None
  9. def getHttpMethod(self):
  10. return 'GET'
  11. def getapiname(self):
  12. return 'dingtalk.oapi.user.get_by_mobile'