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