REAPI/extend/sdk/banma/client/request/BmFinanceGetAcctInfoRequest.php
2024-09-29 15:43:18 +08:00

31 lines
464 B
PHP

<?php
/**
* API: bm.elife.finance.getAcctInfo request
*
* @author auto create
* @since 1.0
*/
class BmFinanceGetAcctInfoRequest
{
private $apiParas = array();
public function getApiMethodName()
{
return "bm.elife.finance.getAcctInfo";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}