# give/4.16.9/src/Framework/Support/Contracts/Jsonable.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 20 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/Support/Contracts/Jsonable.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/Support/Contracts/Jsonable.php
- Modified: 2022-03-31T22:56:06+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/give/4.16.9/code/src/Framework/Support/Contracts/Jsonable.php#L10-L20`.

```php
<?php

namespace Give\Framework\Support\Contracts;

/**
 * @since 2.18.0
 */
interface Jsonable
{
    /**
     * Convert the object to its JSON representation.
     *
     * @since 2.18.0
     *
     * @param  int  $options
     * @return string
     */
    public function toJson($options = 0);
}

```
