| 1 | <?php |
||
| 31 | class CommissionInfo |
||
| 32 | { |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var int |
||
| 36 | */ |
||
| 37 | public $percentage; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var int |
||
| 41 | */ |
||
| 42 | public $amount; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | public $vatIndicator; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @var string |
||
| 51 | */ |
||
| 52 | public $remitIndicator; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * CommissionInfo constructor. |
||
| 56 | * |
||
| 57 | * @param int|null $percentage |
||
| 58 | * @param int|null $amount |
||
| 59 | * @param string|null $vatIndicator |
||
| 60 | * @param string|null $remitIndicator |
||
| 61 | */ |
||
| 62 | 1 | public function __construct($percentage, $amount, $vatIndicator = null, $remitIndicator = null) |
|
| 69 | } |
||
| 70 |