Initial project import
This commit is contained in:
27
node_modules/stripe/cjs/resources/Billing/AlertTriggereds.d.ts
generated
vendored
Normal file
27
node_modules/stripe/cjs/resources/Billing/AlertTriggereds.d.ts
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import { Alert } from './Alerts.js';
|
||||
export interface AlertTriggered {
|
||||
/**
|
||||
* String representing the object's type. Objects of the same type share the same value.
|
||||
*/
|
||||
object: 'billing.alert_triggered';
|
||||
/**
|
||||
* A billing alert is a resource that notifies you when a certain usage threshold on a meter is crossed. For example, you might create a billing alert to notify you when a certain user made 100 API requests.
|
||||
*/
|
||||
alert: Alert;
|
||||
/**
|
||||
* Time at which the object was created. Measured in seconds since the Unix epoch.
|
||||
*/
|
||||
created: number;
|
||||
/**
|
||||
* ID of customer for which the alert triggered
|
||||
*/
|
||||
customer: string;
|
||||
/**
|
||||
* If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
|
||||
*/
|
||||
livemode: boolean;
|
||||
/**
|
||||
* The value triggering the alert
|
||||
*/
|
||||
value: number;
|
||||
}
|
||||
Reference in New Issue
Block a user