# billingo/4.2.8/src/Models/Document/ModificationDocumentInsert.php

Billingo Official for WooCommerce, version 4.2.8. 28 lines.

- Page: https://pluginprobe.com/plugins/billingo/4.2.8/code/src/Models/Document/ModificationDocumentInsert.php
- Raw: https://pluginprobe.com/plugins/billingo/4.2.8/raw/src/Models/Document/ModificationDocumentInsert.php
- Modified: 2025-05-26T04:53:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/billingo/4.2.8/code/src/Models/Document/ModificationDocumentInsert.php#L10-L20`.

```php
<?php

namespace App\Billingo\Models\Document;

use App\Billingo\Contracts\ValidableInterface;
use App\Billingo\Models\BillingoModel;
use App\Billingo\Validation\Document\ModificationDocumentInsertValidator;

/**
 * @property string $due_date
 * @property string $comment
 * @property string $payment_method
 * @property bool $without_financial_fulfillment
 * @property array $items
 */
class ModificationDocumentInsert extends BillingoModel
{

    protected array $cast = [
        'items' => [DocumentItemData::class],
    ];

    protected function getValidator(): ValidableInterface
    {
        return new ModificationDocumentInsertValidator();
    }
}

```
