for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/youzan-pay package.
*
* (c) Slince <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Slince\YouzanPay;
class ApiContext
{
/**
* @var string
protected $clientId;
protected $clientSecret;
protected $kdtId;
public function __construct($clientId, $clientSecret, $kdtId)
$this->clientId = $clientId;
$this->clientSecret = $clientSecret;
$this->kdtId = $kdtId;
}
* @return string
public function getClientId()
return $this->clientId;
* @param string $clientId
* @return ApiContext
public function setClientId($clientId)
return $this;
public function getClientSecret()
return $this->clientSecret;
* @param string $clientSecret
public function setClientSecret($clientSecret)
public function getKdtId()
return $this->kdtId;
* @param string $kdtId
public function setKdtId($kdtId)