chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
2019-03-15 Version: 1.7.1
|
||||
1, Update Dependency
|
||||
|
||||
+99
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of BandOfferOrder
|
||||
*
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getBandId()
|
||||
* @method string getOfferId()
|
||||
* @method string getOwnerId()
|
||||
*/
|
||||
class BandOfferOrderRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'BandOfferOrder',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $bandId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setBandId($bandId)
|
||||
{
|
||||
$this->requestParameters['BandId'] = $bandId;
|
||||
$this->queryParameters['BandId'] = $bandId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $offerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOfferId($offerId)
|
||||
{
|
||||
$this->requestParameters['OfferId'] = $offerId;
|
||||
$this->queryParameters['OfferId'] = $offerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+99
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of BandPrecheck
|
||||
*
|
||||
* @method string getIpAddress()
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getPort()
|
||||
* @method string getOwnerId()
|
||||
*/
|
||||
class BandPrecheckRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'BandPrecheck',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ipAddress
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setIpAddress($ipAddress)
|
||||
{
|
||||
$this->requestParameters['IpAddress'] = $ipAddress;
|
||||
$this->queryParameters['IpAddress'] = $ipAddress;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $port
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setPort($port)
|
||||
{
|
||||
$this->requestParameters['Port'] = $port;
|
||||
$this->queryParameters['Port'] = $port;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+155
@@ -0,0 +1,155 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of BandStartSpeedUp
|
||||
*
|
||||
* @method string getIpAddress()
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getPort()
|
||||
* @method string getBandId()
|
||||
* @method string getOwnerId()
|
||||
* @method string getTargetBandwidth()
|
||||
* @method string getBandScene()
|
||||
* @method string getDirection()
|
||||
*/
|
||||
class BandStartSpeedUpRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'BandStartSpeedUp',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ipAddress
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setIpAddress($ipAddress)
|
||||
{
|
||||
$this->requestParameters['IpAddress'] = $ipAddress;
|
||||
$this->queryParameters['IpAddress'] = $ipAddress;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $port
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setPort($port)
|
||||
{
|
||||
$this->requestParameters['Port'] = $port;
|
||||
$this->queryParameters['Port'] = $port;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $bandId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setBandId($bandId)
|
||||
{
|
||||
$this->requestParameters['BandId'] = $bandId;
|
||||
$this->queryParameters['BandId'] = $bandId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $targetBandwidth
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setTargetBandwidth($targetBandwidth)
|
||||
{
|
||||
$this->requestParameters['TargetBandwidth'] = $targetBandwidth;
|
||||
$this->queryParameters['TargetBandwidth'] = $targetBandwidth;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $bandScene
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setBandScene($bandScene)
|
||||
{
|
||||
$this->requestParameters['BandScene'] = $bandScene;
|
||||
$this->queryParameters['BandScene'] = $bandScene;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $direction
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setDirection($direction)
|
||||
{
|
||||
$this->requestParameters['Direction'] = $direction;
|
||||
$this->queryParameters['Direction'] = $direction;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of BandStatusQuery
|
||||
*
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getBandId()
|
||||
* @method string getOwnerId()
|
||||
*/
|
||||
class BandStatusQueryRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'BandStatusQuery',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $bandId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setBandId($bandId)
|
||||
{
|
||||
$this->requestParameters['BandId'] = $bandId;
|
||||
$this->queryParameters['BandId'] = $bandId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+127
@@ -0,0 +1,127 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of BandStopSpeedUp
|
||||
*
|
||||
* @method string getIpAddress()
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getPort()
|
||||
* @method string getBandId()
|
||||
* @method string getOwnerId()
|
||||
* @method string getDirection()
|
||||
*/
|
||||
class BandStopSpeedUpRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'BandStopSpeedUp',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ipAddress
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setIpAddress($ipAddress)
|
||||
{
|
||||
$this->requestParameters['IpAddress'] = $ipAddress;
|
||||
$this->queryParameters['IpAddress'] = $ipAddress;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $port
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setPort($port)
|
||||
{
|
||||
$this->requestParameters['Port'] = $port;
|
||||
$this->queryParameters['Port'] = $port;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $bandId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setBandId($bandId)
|
||||
{
|
||||
$this->requestParameters['BandId'] = $bandId;
|
||||
$this->queryParameters['BandId'] = $bandId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $direction
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setDirection($direction)
|
||||
{
|
||||
$this->requestParameters['Direction'] = $direction;
|
||||
$this->queryParameters['Direction'] = $direction;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+155
@@ -0,0 +1,155 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of MobileStartSpeedUp
|
||||
*
|
||||
* @method string getDuration()
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getIp()
|
||||
* @method string getDestinationIpAddress()
|
||||
* @method string getPublicIp()
|
||||
* @method string getPublicPort()
|
||||
* @method string getOwnerId()
|
||||
* @method string getToken()
|
||||
*/
|
||||
class MobileStartSpeedUpRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'MobileStartSpeedUp',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $duration
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setDuration($duration)
|
||||
{
|
||||
$this->requestParameters['Duration'] = $duration;
|
||||
$this->queryParameters['Duration'] = $duration;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ip
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setIp($ip)
|
||||
{
|
||||
$this->requestParameters['Ip'] = $ip;
|
||||
$this->queryParameters['Ip'] = $ip;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $destinationIpAddress
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setDestinationIpAddress($destinationIpAddress)
|
||||
{
|
||||
$this->requestParameters['DestinationIpAddress'] = $destinationIpAddress;
|
||||
$this->queryParameters['DestinationIpAddress'] = $destinationIpAddress;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $publicIp
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setPublicIp($publicIp)
|
||||
{
|
||||
$this->requestParameters['PublicIp'] = $publicIp;
|
||||
$this->queryParameters['PublicIp'] = $publicIp;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $publicPort
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setPublicPort($publicPort)
|
||||
{
|
||||
$this->requestParameters['PublicPort'] = $publicPort;
|
||||
$this->queryParameters['PublicPort'] = $publicPort;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $token
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setToken($token)
|
||||
{
|
||||
$this->requestParameters['Token'] = $token;
|
||||
$this->queryParameters['Token'] = $token;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of MobileStatusQuery
|
||||
*
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getCorrelationId()
|
||||
* @method string getOwnerId()
|
||||
*/
|
||||
class MobileStatusQueryRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'MobileStatusQuery',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $correlationId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setCorrelationId($correlationId)
|
||||
{
|
||||
$this->requestParameters['CorrelationId'] = $correlationId;
|
||||
$this->queryParameters['CorrelationId'] = $correlationId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
+85
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
namespace Snsuapi\Request\V20180709;
|
||||
|
||||
/**
|
||||
* Request of MobileStopSpeedUp
|
||||
*
|
||||
* @method string getResourceOwnerId()
|
||||
* @method string getResourceOwnerAccount()
|
||||
* @method string getCorrelationId()
|
||||
* @method string getOwnerId()
|
||||
*/
|
||||
class MobileStopSpeedUpRequest extends \RpcAcsRequest
|
||||
{
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $method = 'POST';
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(
|
||||
'Snsuapi',
|
||||
'2018-07-09',
|
||||
'MobileStopSpeedUp',
|
||||
'snsuapi'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerId($resourceOwnerId)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
$this->queryParameters['ResourceOwnerId'] = $resourceOwnerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $resourceOwnerAccount
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setResourceOwnerAccount($resourceOwnerAccount)
|
||||
{
|
||||
$this->requestParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
$this->queryParameters['ResourceOwnerAccount'] = $resourceOwnerAccount;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $correlationId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setCorrelationId($correlationId)
|
||||
{
|
||||
$this->requestParameters['CorrelationId'] = $correlationId;
|
||||
$this->queryParameters['CorrelationId'] = $correlationId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $ownerId
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function setOwnerId($ownerId)
|
||||
{
|
||||
$this->requestParameters['OwnerId'] = $ownerId;
|
||||
$this->queryParameters['OwnerId'] = $ownerId;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user