/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Per-project-type row in /v1/benchmarks/list response. */ export type BenchmarkListEntry = { project_type: string; /** * 'live' or 'coming_soon' */ status: string; /** * Count of geography_tier rows present in DB */ geographies_available: number; /** * Most recent period with data; None if no rows yet */ latest_period?: (string | null); };