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

Billingo Official for WooCommerce, version trunk. 28 lines.

- Page: https://pluginprobe.com/plugins/billingo/trunk/code/src/Models/Document/ModificationDocumentInsert.php
- Raw: https://pluginprobe.com/plugins/billingo/trunk/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/trunk/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();
    }
}

```
