# give/4.16.8.1/src/License/ValueObjects/LicenseOptionKeys.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/License/ValueObjects/LicenseOptionKeys.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/License/ValueObjects/LicenseOptionKeys.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/License/ValueObjects/LicenseOptionKeys.php#L10-L20`.

```php
<?php

namespace Give\License\ValueObjects;

/**
 * @since 4.8.0 add last active license date
 * @since 4.3.0
 */
class LicenseOptionKeys {
    public const LICENSES = 'give_licenses';
    public const PLATFORM_FEE_PERCENTAGE = 'give_licenses_platform_fee_percentage';
    public const LAST_REFRESHED_DATE = 'give_licenses_refreshed_last_checked';
    public const LAST_ACTIVE_LICENSE_DATE = 'give_licenses_last_active_date';
}

```
