# give/4.16.9/includes/api/class-give-api-v1.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/includes/api/class-give-api-v1.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/includes/api/class-give-api-v1.php
- Modified: 2018-12-13T20:30:46+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/includes/api/class-give-api-v1.php#L10-L20`.

```php
<?php
/**
 * Give API V1
 *
 * @package     Give
 * @subpackage  Classes/API
 * @copyright   Copyright (c) 2016, GiveWP
 * @license     https://opensource.org/licenses/gpl-license GNU Public License
 * @since       1.1
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Give_API_V1 Class
 *
 * The base version API class
 *
 * @since  1.1
 */
class Give_API_V1 extends Give_API {

}

```
