import type { Secret } from '../schemas/Secret'; /** * Secret response model */ export interface SecretResponse { /** * Creation timestamp for the secret * @format int64 */ created?: number; draft?: boolean; /** * Governance metadata information */ governance_metadata?: { [key: string]: any; }; secret?: Secret; /** * Updated timestamp for the secret * @format int64 */ updated?: number; }