| 1 | <?php |
||
| 22 | class CashVoucherItemApiModelUpdate extends iDokladAbstractModel |
||
| 23 | { |
||
| 24 | public $Amount; |
||
| 25 | |||
| 26 | public $Name; |
||
| 27 | |||
| 28 | public $Price; |
||
| 29 | |||
| 30 | public $PriceType; |
||
| 31 | |||
| 32 | public $Status; |
||
| 33 | |||
| 34 | public $VariableSymbol; |
||
| 35 | |||
| 36 | public $VatRate; |
||
| 37 | |||
| 38 | public $VatRateType; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $Name |
||
| 42 | * @param float $Price |
||
| 43 | * @param array $properties Properties key=>value see getAvailableProperties() |
||
| 44 | * |
||
| 45 | * @throws \InvalidArgumentException |
||
| 46 | */ |
||
| 47 | public function __construct(string $Name, float $Price, array $properties = []) |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @return array |
||
| 57 | */ |
||
| 58 | public function getAvailableProperties(): array |
||
| 69 | } |
||
| 70 |