# billingo/4.2.8/src/Models/Address.php

Billingo Official for WooCommerce, version 4.2.8. 24 lines.

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

```php
<?php

namespace App\Billingo\Models;

use App\Billingo\Contracts\ValidableInterface;
use App\Billingo\Validation\AddressValidator;
use App\Billingo\Traits\WithFactory;

/**
 * @property string $country_code
 * @property string $post_code
 * @property string $city
 * @property string $address
 */
class Address extends BillingoModel
{

    use WithFactory;
    protected function getValidator(): ValidableInterface
    {
        return new AddressValidator();
    }
}

```
