| 1 | <?php |
||
| 16 | class TransactionDetails |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | public $code; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public $type; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | public $issueIndicator; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * TransactionDetails constructor. |
||
| 35 | * |
||
| 36 | * @param string|null $type |
||
| 37 | * @param string|null $code |
||
| 38 | * @param string|null $issueIndicator |
||
| 39 | */ |
||
| 40 | public function __construct($type, $code, $issueIndicator) |
||
| 46 | } |
||
| 47 |