import type { Environment } from '../schemas/Environment'; /** * Default response when a environment is returned */ export interface EnvironmentResponse { /** * Creation timestamp for environment. * @format int64 */ created?: number; environment?: Environment; /** * Last modification timestamp for environment. * @format int64 */ updated?: number; }