/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface Dashboard { id?: string; name?: string; self?: string; view?: string; } export interface Dashboards { startAt?: number; maxResults?: number; total?: number; prev?: string; next?: string; dashboards?: Dashboard[]; } //# sourceMappingURL=dashboard.d.ts.map