REAPI/extend/sdk/taobao/top/request/CainiaoCloudprintStdtemplatesGetRequest.php

33 lines
512 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
/**
* TOP API: cainiao.cloudprint.stdtemplates.get request
*
* @author auto create
* @since 1.0, 2024.03.14
*/
class CainiaoCloudprintStdtemplatesGetRequest
{
private $apiParas = array();
public function getApiMethodName()
{
return "cainiao.cloudprint.stdtemplates.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}