| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Models\Partner; |
| 4 |
|
| 5 |
use App\Billingo\Contracts\ValidableInterface; |
| 6 |
use App\Billingo\Models\BillingoModel; |
| 7 |
use App\Billingo\Traits\WithFactory; |
| 8 |
use App\Billingo\Validation\Partner\PartnerGiroSettingsValidator; |
| 9 |
|
| 10 |
/** |
| 11 |
* @property bool $giro_default_settings |
| 12 |
* @property bool $giro_payment_request_enabled |
| 13 |
* @property bool $giro_different_amount_allowed |
| 14 |
*/ |
| 15 |
class PartnerGiroSettings extends BillingoModel |
| 16 |
{ |
| 17 |
use WithFactory; |
| 18 |
|
| 19 |
protected function getValidator(): ValidableInterface |
| 20 |
{ |
| 21 |
return new PartnerGiroSettingsValidator(); |
| 22 |
} |
| 23 |
} |
| 24 |
|