# give/4.16.9/src/Tracking/Contracts/TrackData.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Tracking/Contracts/TrackData.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Tracking/Contracts/TrackData.php
- Modified: 2021-11-23T23:55:18+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/Tracking/Contracts/TrackData.php#L10-L20`.

```php
<?php

namespace Give\Tracking\Contracts;

/**
 * Class TrackData
 *
 * This interface represents a Track Data collection
 *
 * @package Give\Tracking
 * @since 2.10.0
 */
interface TrackData
{

    /**
     * Returns the collection data.
     *
     * @since 2.10.0
     * @return array The collection data.
     */
    public function get();
}

```
