← All changes
|
freemius/includes/entities/class-fs-plugin-plan.php
+12
-1
1.4.5
→
3.6.0
View file →
| @@ -12,9 +12,8 @@ | ||
| 12 | 12 | |
| 13 | 13 | /** |
| 14 | 14 | * Class FS_Plugin_Plan |
| 15 | 15 | * |
| 16 | - * @property FS_Pricing[] $pricing | |
| 17 | 16 | */ |
| 18 | 17 | class FS_Plugin_Plan extends FS_Entity { |
| 19 | 18 | |
| 20 | 19 | #region Properties |
| @@ -87,8 +86,20 @@ | ||
| 87 | 86 | /** |
| 88 | 87 | * @var bool Is featured plan. |
| 89 | 88 | */ |
| 90 | 89 | public $is_featured; |
| 90 | + /** | |
| 91 | + * @var bool Is hidden plan. | |
| 92 | + */ | |
| 93 | + public $is_hidden; | |
| 94 | + /** | |
| 95 | + * @var FS_Pricing[] | |
| 96 | + */ | |
| 97 | + public $pricing; | |
| 98 | + /** | |
| 99 | + * @var object[] | |
| 100 | + */ | |
| 101 | + public $features; | |
| 91 | 102 | |
| 92 | 103 | #endregion Properties |
| 93 | 104 | |
| 94 | 105 | /** |