# give/4.16.8.1/src/Subscriptions/ValueObjects/SubscriptionNoteMetaKeys.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Subscriptions/ValueObjects/SubscriptionNoteMetaKeys.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Subscriptions/ValueObjects/SubscriptionNoteMetaKeys.php
- Modified: 2025-09-10T13:42:30+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.8.1/code/src/Subscriptions/ValueObjects/SubscriptionNoteMetaKeys.php#L10-L20`.

```php
<?php

namespace Give\Subscriptions\ValueObjects;

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

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

    const TYPE = 'note_type';
}

```
