Files
advertising/ShortMessage/top/request/TopIpoutGetRequest.php

33 lines
493 B
PHP
Raw Permalink Normal View History

2019-04-11 15:54:34 +08:00
<?php
/**
* TOP API: taobao.top.ipout.get request
*
* @author auto create
* @since 1.0, 2015.09.07
*/
class TopIpoutGetRequest
{
private $apiParas = array();
public function getApiMethodName()
{
return "taobao.top.ipout.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}