| 1 | <?php |
||
| 16 | class CurrencyDetails |
||
| 17 | { |
||
| 18 | const CURRENCY_TARGET = 3; |
||
| 19 | |||
| 20 | const CURRENCY_REFERENCE = 2; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var int |
||
| 24 | */ |
||
| 25 | public $currencyQualifier; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | public $currencyIsoCode; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * CurrencyDetails constructor. |
||
| 34 | * |
||
| 35 | * @param int $type |
||
| 36 | * @param string $currency |
||
| 37 | */ |
||
| 38 | public function __construct($type, $currency) |
||
| 43 | } |
||
| 44 |