REAPI/extend/sdk/taobao/top/request/CainiaoCloudprintMystdtemplatesGetRequest.php
2024-09-29 15:43:18 +08:00

33 lines
518 B
PHP

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