ActiveEntitlement.php
7 months ago
ActiveEntitlementSummary.php
7 months ago
Feature.php
7 months ago
ActiveEntitlementSummary.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace AmeliaVendor\Stripe\Entitlements; |
| 6 | |
| 7 | /** |
| 8 | * A summary of a customer's active entitlements. |
| 9 | * |
| 10 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 11 | * @property string $customer The customer that is entitled to this feature. |
| 12 | * @property \AmeliaVendor\Stripe\Collection<ActiveEntitlement> $entitlements The list of entitlements this customer has. |
| 13 | * @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode. |
| 14 | */ |
| 15 | class ActiveEntitlementSummary extends \AmeliaVendor\Stripe\ApiResource |
| 16 | { |
| 17 | const OBJECT_NAME = 'entitlements.active_entitlement_summary'; |
| 18 | } |
| 19 |