| 1 | <?php |
||
| 17 | class ReceivedDocumentPaymentApiModelInsert extends iDokladAbstractModel |
||
| 18 | { |
||
| 19 | /** @Assert\DateTime() */ |
||
| 20 | public $DateOfPayment; |
||
| 21 | |||
| 22 | /** @Assert\DateTime() */ |
||
| 23 | public $DateOfVatApplication; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var int |
||
| 27 | * |
||
| 28 | * @Assert\NotBlank() |
||
| 29 | * @Assert\Type(type="int") |
||
| 30 | */ |
||
| 31 | public $InvoiceId; |
||
| 32 | |||
| 33 | /** @Assert\Type(type="float") */ |
||
| 34 | public $PaymentAmount; |
||
| 35 | |||
| 36 | /** @Assert\Type(type="int") */ |
||
| 37 | public $PaymentOptionId; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return array |
||
| 41 | */ |
||
| 42 | public static function getDateMap(): array |
||
| 49 | } |
||
| 50 |