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