import type { DeployableType } from '../schemas/DeployableType'; /** * Deployable metadata without YAML */ export interface DeployableMetadata { account?: string; /** * Creation timestamp for Deployable. * @format int64 */ created?: number; description?: string; identifier: string; name: string; org?: string; parentUniqueId?: string; project?: string; tags?: { [key: string]: string; }; type: DeployableType; /** * Last modification timestamp for Deployable. * @format int64 */ updated?: number; }