# billingo/4.2.9/src/Models/Partner/PartnerGiroSettings.php

Billingo Official for WooCommerce, version 4.2.9. 24 lines.

- Page: https://pluginprobe.com/plugins/billingo/4.2.9/code/src/Models/Partner/PartnerGiroSettings.php
- Raw: https://pluginprobe.com/plugins/billingo/4.2.9/raw/src/Models/Partner/PartnerGiroSettings.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.9/code/src/Models/Partner/PartnerGiroSettings.php#L10-L20`.

```php
<?php

namespace App\Billingo\Models\Partner;

use App\Billingo\Contracts\ValidableInterface;
use App\Billingo\Models\BillingoModel;
use App\Billingo\Traits\WithFactory;
use App\Billingo\Validation\Partner\PartnerGiroSettingsValidator;

/**
 * @property bool $giro_default_settings
 * @property bool $giro_payment_request_enabled
 * @property bool $giro_different_amount_allowed
 */
class PartnerGiroSettings extends BillingoModel
{
    use WithFactory;

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

```
