You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.3 KiB
65 lines
1.3 KiB
<?php
|
|
/**
|
|
* dingtalk API: dingtalk.oapi.v2.user.getbymobile request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2022.01.17
|
|
*/
|
|
class OapiV2UserGetbymobileRequest
|
|
{
|
|
/**
|
|
* 手机号
|
|
**/
|
|
private $mobile;
|
|
|
|
/**
|
|
* 支持通过手机号搜索专属帐号(不含其他组织创建的专属帐号)
|
|
**/
|
|
private $supportExclusiveAccountSearch;
|
|
|
|
private $apiParas = array();
|
|
|
|
public function setMobile($mobile)
|
|
{
|
|
$this->mobile = $mobile;
|
|
$this->apiParas["mobile"] = $mobile;
|
|
}
|
|
|
|
public function getMobile()
|
|
{
|
|
return $this->mobile;
|
|
}
|
|
|
|
public function setSupportExclusiveAccountSearch($supportExclusiveAccountSearch)
|
|
{
|
|
$this->supportExclusiveAccountSearch = $supportExclusiveAccountSearch;
|
|
$this->apiParas["support_exclusive_account_search"] = $supportExclusiveAccountSearch;
|
|
}
|
|
|
|
public function getSupportExclusiveAccountSearch()
|
|
{
|
|
return $this->supportExclusiveAccountSearch;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "dingtalk.oapi.v2.user.getbymobile";
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
|
|
RequestCheckUtil::checkNotNull($this->mobile,"mobile");
|
|
RequestCheckUtil::checkMaxLength($this->mobile,15,"mobile");
|
|
}
|
|
|
|
public function putOtherTextParam($key, $value) {
|
|
$this->apiParas[$key] = $value;
|
|
$this->$key = $value;
|
|
}
|
|
}
|
|
|