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

33 lines
456 B
PHP
Executable File

<?php
/**
* TOP API: taobao.openuid.get request
*
* @author auto create
* @since 1.0, 2023.07.07
*/
class OpenuidGetRequest
{
private $apiParas = array();
public function getApiMethodName()
{
return "taobao.openuid.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}