# billingo/trunk/src/Contracts/SerializableInterface.php

Billingo Official for WooCommerce, version trunk. 11 lines.

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

```php
<?php

namespace App\Billingo\Contracts;

interface SerializableInterface
{
    public function toArray(): array;

    public function fromArray(array $data): self;
}

```
