CreateWalletResponse::getCurrency()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * Package: PHP Bitaps API
7
 *
8
 * (c) Eldar Gazaliev <[email protected]>
9
 *
10
 *  Link: <https://github.com/MyZik>
11
 *
12
 * For the full copyright and license information, please view the LICENSE file
13
 * that was distributed with this source code.
14
 */
15
16
namespace Bitaps\WalletAPI\Response\CreateWallet;
17
18
use Bitaps\WalletAPI\Response\AbstractResponse;
19
20
class CreateWalletResponse extends AbstractResponse
21
{
22
    /**
23
     * Wallet ID
24
     *
25
     * @var string
26
     */
27
    private string $walletId;
28
29
    /**
30
     * Wallet ID Hash
31
     *
32
     * @var string
33
     */
34
    private string $walletIdHash;
35
36
    /**
37
     * Currency
38
     *
39
     * @var string
40
     */
41
    private string $currency;
42
43
    /**
44
     * @return string
45
     */
46
    public function getWalletId(): string
47
    {
48
        return $this->walletId;
49
    }
50
51
    /**
52
     * @return string
53
     */
54
    public function getWalletIdHash(): string
55
    {
56
        return $this->walletIdHash;
57
    }
58
59
    /**
60
     * @return string
61
     */
62
    public function getCurrency(): string
63
    {
64
        return $this->currency;
65
    }
66
}
67