# give/4.16.9/src/Donations/ValueObjects/DonationNoteMetaKeys.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Donations/ValueObjects/DonationNoteMetaKeys.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Donations/ValueObjects/DonationNoteMetaKeys.php
- Modified: 2023-02-23T23:18:22+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/Donations/ValueObjects/DonationNoteMetaKeys.php#L10-L20`.

```php
<?php

namespace Give\Donations\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;
use Give\Framework\Support\ValueObjects\EnumInteractsWithQueryBuilder;

/**
 * @since 2.25.0
 *
 * @method static DonationNoteMetaKeys TYPE()
 * @method bool isType()
 */
class DonationNoteMetaKeys extends Enum
{
    use EnumInteractsWithQueryBuilder;

    const TYPE = 'note_type';
}

```
