| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\API\REST\V3\Routes\Donations\ValueObjects; |
| 4 |
|
| 5 |
use Give\Framework\Support\ValueObjects\Enum; |
| 6 |
|
| 7 |
/** |
| 8 |
* @since 4.0.0 |
| 9 |
* |
| 10 |
* @method static DonationAnonymousMode EXCLUDE() |
| 11 |
* @method static DonationAnonymousMode INCLUDED() |
| 12 |
* @method static DonationAnonymousMode REDACTED() |
| 13 |
* @method bool isExcluded() |
| 14 |
* @method bool isIncluded() |
| 15 |
* @method bool isRedacted() |
| 16 |
*/ |
| 17 |
class DonationAnonymousMode extends Enum |
| 18 |
{ |
| 19 |
const EXCLUDED = 'exclude'; |
| 20 |
const INCLUDED = 'include'; |
| 21 |
const REDACTED = 'redact'; |
| 22 |
} |
| 23 |
|