for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* Package: PHP Bitaps API
*
* (c) Eldar Gazaliev <[email protected]>
* Link: <https://github.com/MyZik>
* For the full copyright and license information, please view the LICENSE file
* that was distributed with this source code.
*/
namespace Bitaps\WalletAPI\Response\CreateWallet;
use Bitaps\WalletAPI\Response\AbstractResponse;
class CreateWalletResponse extends AbstractResponse
{
/**
* Wallet ID
* @var string
private string $walletId;
* Wallet ID Hash
private string $walletIdHash;
* Currency
private string $currency;
* @return string
public function getWalletId(): string
return $this->walletId;
}
public function getWalletIdHash(): string
return $this->walletIdHash;
public function getCurrency(): string
return $this->currency;