for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CloudyCity\UCMarketingSDK\Account;
use CloudyCity\UCMarketingSDK\Kernel\BaseClient;
class Client extends BaseClient
{
/**
* 获取账户信息.
*
* @throws \CloudyCity\UCMarketingSDK\Kernel\Exceptions\ApiException
* @throws \CloudyCity\UCMarketingSDK\Kernel\Exceptions\InvalidArgumentException
* @throws \GuzzleHttp\Exception\GuzzleException
* @return array|\Doctrine\Common\Collections\ArrayCollection|object|\Psr\Http\Message\ResponseInterface|string
*/
public function get()
return $this->httpPostJson('account/getAccount');
}
* 更新账户预算.
* @param array $params
public function updateBudget(array $params)
return $this->httpPostJson('account/updateBudget', $params);