| 1 | <?php |
||
| 21 | class PurchaseOrderGet extends AbstractType implements TypeInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var array |
||
| 25 | */ |
||
| 26 | protected $template = [ |
||
| 27 | 'type_identifier' => 'PURCHASE_ORDER_GET', |
||
| 28 | 'purchase_order_id' => null, |
||
| 29 | 'client_id' => null, |
||
| 30 | 'supplier_id' => null, |
||
| 31 | 'product_id' => null, |
||
| 32 | 'sent_only' => null, |
||
| 33 | 'return_format' => null, |
||
| 34 | 'changed_only' => null, |
||
| 35 | 'system_name' => null, |
||
| 36 | 'do_not_use_letter' => null, |
||
| 37 | ]; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Formally validates the type data in $data attribute. |
||
| 41 | * |
||
| 42 | * @return bool Validation success |
||
| 43 | */ |
||
| 44 | public function validate() |
||
| 48 | } |
||
| 49 |