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

98 lines
1.5 KiB
PHP
Raw 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.trade.memo.add request
*
* @author auto create
* @since 1.0, 2024.02.01
*/
class TradeMemoAddRequest
{
/**
* 交易备注旗帜可选值为0(灰色), 1(红色), 2(黄色), 3(绿色), 4(蓝色), 5(粉红色)默认值为0
**/
private $flag;
/**
* 交易备注。最大长度: 1000个字节
**/
private $memo;
/**
* 插旗备注
**/
private $tag;
/**
* 交易编号
**/
private $tid;
private $apiParas = array();
public function setFlag($flag)
{
$this->flag = $flag;
$this->apiParas["flag"] = $flag;
}
public function getFlag()
{
return $this->flag;
}
public function setMemo($memo)
{
$this->memo = $memo;
$this->apiParas["memo"] = $memo;
}
public function getMemo()
{
return $this->memo;
}
public function setTag($tag)
{
$this->tag = $tag;
$this->apiParas["tag"] = $tag;
}
public function getTag()
{
return $this->tag;
}
public function setTid($tid)
{
$this->tid = $tid;
$this->apiParas["tid"] = $tid;
}
public function getTid()
{
return $this->tid;
}
public function getApiMethodName()
{
return "taobao.trade.memo.add";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->memo,"memo");
RequestCheckUtil::checkNotNull($this->tid,"tid");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}