/** * 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. */ /** * * @export * @interface DashboardRowResponse */ export interface DashboardRowResponse { /** * * @type {boolean} * @memberof DashboardRowResponse */ archived?: boolean; /** * * @type {number} * @memberof DashboardRowResponse */ installationRepoId?: number; /** * * @type {string} * @memberof DashboardRowResponse */ lastRunAt?: string; /** * * @type {string} * @memberof DashboardRowResponse */ lastRunStatus?: string; /** * * @type {string} * @memberof DashboardRowResponse */ repoFullName?: string; /** * * @type {number} * @memberof DashboardRowResponse */ repoId?: number; /** * * @type {number} * @memberof DashboardRowResponse */ runCount?: number; /** * * @type {string} * @memberof DashboardRowResponse */ setupPrUrl?: string; /** * * @type {string} * @memberof DashboardRowResponse */ status?: string; /** * * @type {string} * @memberof DashboardRowResponse */ statusLabel?: string; /** * * @type {boolean} * @memberof DashboardRowResponse */ workflowPresent?: boolean; } /** * Check if a given object implements the DashboardRowResponse interface. */ export declare function instanceOfDashboardRowResponse(value: object): value is DashboardRowResponse; export declare function DashboardRowResponseFromJSON(json: any): DashboardRowResponse; export declare function DashboardRowResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardRowResponse; export declare function DashboardRowResponseToJSON(json: any): DashboardRowResponse; export declare function DashboardRowResponseToJSONTyped(value?: DashboardRowResponse | null, ignoreDiscriminator?: boolean): any;