DepositEntity
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 7
c 0
b 0
f 0
1
<?php
2
/*
3
 * This file is part of the PayBreak/paybreak-sdk-php package.
4
 *
5
 * (c) PayBreak <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace PayBreak\Sdk\Entities\Product;
12
13
use WNowicki\Generic\AbstractEntity;
14
15
/**
16
 * Deposit Entity
17
 *
18
 * @author EB
19
 * @method $this setMinimumPercentage(float $minimumPercentage)
20
 * @method float|null getMinimumPercentage()
21
 * @method $this setMaximumPercentage(float $maximumPercentage)
22
 * @method float|null getMaximumPercentage()
23
 * @method $this setMinimumAmount(int $minimumAmount)
24
 * @method int|null getMinimumAmount()
25
 * @method $this setMaximumAmount(int $maximumAmount)
26
 * @method int|null getMaximumAmount()
27
 * @package PayBreak\Sdk\Entities
28
 */
29
class DepositEntity extends AbstractEntity
30
{
31
    protected $properties = [
32
        'minimum_percentage',
33
        'maximum_percentage',
34
        'minimum_amount',
35
        'maximum_amount',
36
    ];
37
}
38