import type { Service } from '../schemas/Service'; /** * Service entity with dashboard-specific metadata including deployment types and timestamps */ export interface ServiceDashboardResponse { /** * Service creation timestamp in milliseconds since epoch * @format int64 */ created_at?: number; /** * List of deployment types configured for this service * @example ["Kubernetes","NativeHelm"] */ deployment_types?: string[]; /** * Last modification timestamp in milliseconds since epoch * @format int64 */ last_modified_at?: number; service?: Service; }