/** * 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 { EntityApiKeyEnvironment } from './entityApiKeyEnvironment'; export interface EntityApiKey { /** API key (ek_* prefix for entity-scoped keys) */ id: string; /** Entity ID this key is scoped to */ entity_id: string; /** * Friendly name for the API key * @nullable */ name: string | null; /** Environment the key is valid for */ environment: EntityApiKeyEnvironment; /** When the key was created */ created_at: string; /** * When the key expires, or null if it never expires * @nullable */ expires_at: string | null; } //# sourceMappingURL=entityApiKey.d.ts.map