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

66 lines
1.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* TOP API: taobao.vas.subscribe.get request
*
* @author auto create
* @since 1.0, 2024.03.14
*/
class VasSubscribeGetRequest
{
/**
* 商品编码从合作伙伴后台my.open.taobao.com-收费管理-收费项目列表 能够获得该应用的商品代码
**/
private $articleCode;
/**
* 淘宝会员名
**/
private $nick;
private $apiParas = array();
public function setArticleCode($articleCode)
{
$this->articleCode = $articleCode;
$this->apiParas["article_code"] = $articleCode;
}
public function getArticleCode()
{
return $this->articleCode;
}
public function setNick($nick)
{
$this->nick = $nick;
$this->apiParas["nick"] = $nick;
}
public function getNick()
{
return $this->nick;
}
public function getApiMethodName()
{
return "taobao.vas.subscribe.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->articleCode,"articleCode");
RequestCheckUtil::checkNotNull($this->nick,"nick");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}