/** * Sonatype Guide API * REST API into [Sonatype Guide](https://guide.sonatype.com). * * The version of the OpenAPI document: 202607 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DashboardRowResponse } from './DashboardRowResponse'; /** * * @export * @interface DashboardPageResponse */ export interface DashboardPageResponse { /** * * @type {Array} * @memberof DashboardPageResponse */ rows?: Array; /** * * @type {number} * @memberof DashboardPageResponse */ total?: number; } /** * Check if a given object implements the DashboardPageResponse interface. */ export declare function instanceOfDashboardPageResponse(value: object): value is DashboardPageResponse; export declare function DashboardPageResponseFromJSON(json: any): DashboardPageResponse; export declare function DashboardPageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardPageResponse; export declare function DashboardPageResponseToJSON(json: any): DashboardPageResponse; export declare function DashboardPageResponseToJSONTyped(value?: DashboardPageResponse | null, ignoreDiscriminator?: boolean): any;