136 lines
2.3 KiB
PHP
Executable File
136 lines
2.3 KiB
PHP
Executable File
<?php
|
||
/**
|
||
* ALIPAY API: alipay.asset.account.get request
|
||
*
|
||
* @author auto create
|
||
* @since 1.0, 2016-10-11 19:39:10
|
||
*/
|
||
class AlipayAssetAccountGetRequest
|
||
{
|
||
/**
|
||
* 使用该app提供用户信息的商户,可以和app相同。
|
||
**/
|
||
private $providerId;
|
||
|
||
/**
|
||
* 用户在商户网站的会员标识。商户需确保其唯一性,不可变更。
|
||
注意:根据provider_user_id查询时该值不可空。
|
||
**/
|
||
private $providerUserId;
|
||
|
||
private $apiParas = array();
|
||
private $terminalType;
|
||
private $terminalInfo;
|
||
private $prodCode;
|
||
private $apiVersion="1.0";
|
||
private $notifyUrl;
|
||
private $returnUrl;
|
||
private $needEncrypt=false;
|
||
|
||
|
||
public function setProviderId($providerId)
|
||
{
|
||
$this->providerId = $providerId;
|
||
$this->apiParas["provider_id"] = $providerId;
|
||
}
|
||
|
||
public function getProviderId()
|
||
{
|
||
return $this->providerId;
|
||
}
|
||
|
||
public function setProviderUserId($providerUserId)
|
||
{
|
||
$this->providerUserId = $providerUserId;
|
||
$this->apiParas["provider_user_id"] = $providerUserId;
|
||
}
|
||
|
||
public function getProviderUserId()
|
||
{
|
||
return $this->providerUserId;
|
||
}
|
||
|
||
public function getApiMethodName()
|
||
{
|
||
return "alipay.asset.account.get";
|
||
}
|
||
|
||
public function setNotifyUrl($notifyUrl)
|
||
{
|
||
$this->notifyUrl=$notifyUrl;
|
||
}
|
||
|
||
public function getNotifyUrl()
|
||
{
|
||
return $this->notifyUrl;
|
||
}
|
||
|
||
public function setReturnUrl($returnUrl)
|
||
{
|
||
$this->returnUrl=$returnUrl;
|
||
}
|
||
|
||
public function getReturnUrl()
|
||
{
|
||
return $this->returnUrl;
|
||
}
|
||
|
||
public function getApiParas()
|
||
{
|
||
return $this->apiParas;
|
||
}
|
||
|
||
public function getTerminalType()
|
||
{
|
||
return $this->terminalType;
|
||
}
|
||
|
||
public function setTerminalType($terminalType)
|
||
{
|
||
$this->terminalType = $terminalType;
|
||
}
|
||
|
||
public function getTerminalInfo()
|
||
{
|
||
return $this->terminalInfo;
|
||
}
|
||
|
||
public function setTerminalInfo($terminalInfo)
|
||
{
|
||
$this->terminalInfo = $terminalInfo;
|
||
}
|
||
|
||
public function getProdCode()
|
||
{
|
||
return $this->prodCode;
|
||
}
|
||
|
||
public function setProdCode($prodCode)
|
||
{
|
||
$this->prodCode = $prodCode;
|
||
}
|
||
|
||
public function setApiVersion($apiVersion)
|
||
{
|
||
$this->apiVersion=$apiVersion;
|
||
}
|
||
|
||
public function getApiVersion()
|
||
{
|
||
return $this->apiVersion;
|
||
}
|
||
|
||
public function setNeedEncrypt($needEncrypt)
|
||
{
|
||
|
||
$this->needEncrypt=$needEncrypt;
|
||
|
||
}
|
||
|
||
public function getNeedEncrypt()
|
||
{
|
||
return $this->needEncrypt;
|
||
}
|
||
|
||
}
|