import type { PhaseResource } from "./phaseResource"; import type { ResourceWithId } from "./resource"; import type { RetentionPeriod } from "./retentionPeriod"; interface LifecycleResourceLinks { Self: string; Preview: string; Projects: string; } export interface LifecycleResource extends ResourceWithId { SpaceId: string; Phases: PhaseResource[]; Name: string; ReleaseRetentionPolicy: RetentionPeriod; TentacleRetentionPolicy: RetentionPeriod; Description?: string; } export {};