/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import type { PlanLimits } from './planLimits'; /** * A subscription plan for a white-label product */ export interface WhiteLabelPlan { /** Unique plan ID */ id: string; /** Plan slug */ slug: string; /** Display name */ name: string; /** * Billing interval: "monthly", "yearly", or null for free plans * @nullable */ billing_interval: string | null; /** * Price in cents. Null for free plans. * @nullable */ base_price_cents: number | null; limits: PlanLimits | null; /** List of features included. Empty array means all features. */ features: string[]; /** Whether this is a free plan */ is_free: boolean; /** Display order for sorting */ display_order: number; } //# sourceMappingURL=whiteLabelPlan.d.ts.map