wp-user-avatar
/
third-party
/
vendor
/
stripe
/
stripe-php
/
lib
/
Entitlements
/
ActiveEntitlementSummary.php
ActiveEntitlement.php
2 months ago
ActiveEntitlementSummary.php
2 months ago
Feature.php
2 months ago
ActiveEntitlementSummary.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | namespace ProfilePressVendor\Stripe\Entitlements; |
| 5 | |
| 6 | /** |
| 7 | * A summary of a customer's active entitlements. |
| 8 | * |
| 9 | * @property string $object String representing the object's type. Objects of the same type share the same value. |
| 10 | * @property string $customer The customer that is entitled to this feature. |
| 11 | * @property \Stripe\Collection<\Stripe\Entitlements\ActiveEntitlement> $entitlements The list of entitlements this customer has. |
| 12 | * @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. |
| 13 | */ |
| 14 | class ActiveEntitlementSummary extends \ProfilePressVendor\Stripe\ApiResource |
| 15 | { |
| 16 | const OBJECT_NAME = 'entitlements.active_entitlement_summary'; |
| 17 | } |
| 18 |