# give/4.16.8.1/src/API/REST/V3/Routes/Subscriptions/ValueObjects/SubscriptionRoute.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/API/REST/V3/Routes/Subscriptions/ValueObjects/SubscriptionRoute.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/API/REST/V3/Routes/Subscriptions/ValueObjects/SubscriptionRoute.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/API/REST/V3/Routes/Subscriptions/ValueObjects/SubscriptionRoute.php#L10-L20`.

```php
<?php

namespace Give\API\REST\V3\Routes\Subscriptions\ValueObjects;

use Give\Framework\Support\ValueObjects\Enum;

/**
 * @since 4.8.0
 *
 * @method static SubscriptionRoute NAMESPACE()
 * @method static SubscriptionRoute BASE()
 * @method bool isNamespace()
 * @method bool isBase()
 */
class SubscriptionRoute extends Enum
{
    const NAMESPACE = 'givewp/v3';
    const BASE = 'subscriptions';
}

```
