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

83 lines
1.5 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.tmc.user.get request
*
* @author auto create
* @since 1.0, 2022.05.31
*/
class TmcUserGetRequest
{
/**
* 需返回的字段列表多个字段以半角逗号分隔。可选值TmcUser结构体中的所有字段一定要返回topic。
**/
private $fields;
/**
* 用户昵称
**/
private $nick;
/**
* 用户所属的平台类型tbUIC:淘宝用户; icbu: icbu用户;ae:ae用户
**/
private $userPlatform;
private $apiParas = array();
public function setFields($fields)
{
$this->fields = $fields;
$this->apiParas["fields"] = $fields;
}
public function getFields()
{
return $this->fields;
}
public function setNick($nick)
{
$this->nick = $nick;
$this->apiParas["nick"] = $nick;
}
public function getNick()
{
return $this->nick;
}
public function setUserPlatform($userPlatform)
{
$this->userPlatform = $userPlatform;
$this->apiParas["user_platform"] = $userPlatform;
}
public function getUserPlatform()
{
return $this->userPlatform;
}
public function getApiMethodName()
{
return "taobao.tmc.user.get";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->fields,"fields");
RequestCheckUtil::checkNotNull($this->nick,"nick");
RequestCheckUtil::checkMaxLength($this->nick,100,"nick");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}