shop-php/extend/taobao/request/BaichuanOpenaccountResetcodeSendRequest.php
2024-01-26 09:39:36 +08:00

48 lines
727 B
PHP
Executable File

<?php
/**
* TOP API: taobao.baichuan.openaccount.resetcode.send request
*
* @author auto create
* @since 1.0, 2018.07.26
*/
class BaichuanOpenaccountResetcodeSendRequest
{
/**
* name
**/
private $name;
private $apiParas = array();
public function setName($name)
{
$this->name = $name;
$this->apiParas["name"] = $name;
}
public function getName()
{
return $this->name;
}
public function getApiMethodName()
{
return "taobao.baichuan.openaccount.resetcode.send";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}