# give/4.16.9/src/DonationForms/ValueObjects/DonationFormMetaKeys.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/DonationForms/ValueObjects/DonationFormMetaKeys.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/DonationForms/ValueObjects/DonationFormMetaKeys.php
- Modified: 2023-10-16T17:55: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/src/DonationForms/ValueObjects/DonationFormMetaKeys.php#L10-L20`.

```php
<?php

namespace Give\DonationForms\ValueObjects;

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

/**
 * @since 3.0.0
 *
 * @method static DonationFormMetaKeys SETTINGS()
 * @method static DonationFormMetaKeys FIELDS()
 * @method bool isSettings()
 * @method bool isFields()
 */
class DonationFormMetaKeys extends Enum
{
    use EnumInteractsWithQueryBuilder;

    const SETTINGS = 'formBuilderSettings';

    const FIELDS = 'formBuilderFields';
}

```
