Initial project import
This commit is contained in:
20
node_modules/stripe/cjs/resources/Entitlements/ActiveEntitlementSummaries.d.ts
generated
vendored
Normal file
20
node_modules/stripe/cjs/resources/Entitlements/ActiveEntitlementSummaries.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { ActiveEntitlement } from './ActiveEntitlements.js';
|
||||
import { ApiList } from '../../lib.js';
|
||||
export interface ActiveEntitlementSummary {
|
||||
/**
|
||||
* String representing the object's type. Objects of the same type share the same value.
|
||||
*/
|
||||
object: 'entitlements.active_entitlement_summary';
|
||||
/**
|
||||
* The customer that is entitled to this feature.
|
||||
*/
|
||||
customer: string;
|
||||
/**
|
||||
* The list of entitlements this customer has.
|
||||
*/
|
||||
entitlements: ApiList<ActiveEntitlement>;
|
||||
/**
|
||||
* If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
|
||||
*/
|
||||
livemode: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user