Rocky_Mountain_Vending/.pnpm-store/v10/files/e7/66f38e8406c1b7874331d927e034d5da7ced50a788b22d065f0442eefc6674afddd02ade897852526a1e23208b0d8c04d09f34179dd76d9faa135545f69eaf
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

45 lines
1.2 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* Usage records allow you to report customer usage and metrics to Stripe for
* metered billing of subscription prices.
*
* Related guide: [Metered billing](https://stripe.com/docs/billing/subscriptions/metered-billing)
*
* This is our legacy usage-based billing API. See the [updated usage-based billing docs](https://docs.stripe.com/billing/subscriptions/usage-based).
*/
interface UsageRecord {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'usage_record';
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* The usage quantity for the specified date.
*/
quantity: number;
/**
* The ID of the subscription item this usage record contains data for.
*/
subscription_item: string;
/**
* The timestamp when this usage occurred.
*/
timestamp: number;
}
}
}