/** * 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 ItemProgress */ export interface ItemProgress { /** * * @type {number} * @memberof ItemProgress */ installationRepoId?: number; /** * * @type {string} * @memberof ItemProgress */ reason?: string; /** * * @type {string} * @memberof ItemProgress */ repoFullName?: string; /** * * @type {string} * @memberof ItemProgress */ setupPrUrl?: string; /** * * @type {string} * @memberof ItemProgress */ status?: string; } /** * Check if a given object implements the ItemProgress interface. */ export declare function instanceOfItemProgress(value: object): value is ItemProgress; export declare function ItemProgressFromJSON(json: any): ItemProgress; export declare function ItemProgressFromJSONTyped(json: any, ignoreDiscriminator: boolean): ItemProgress; export declare function ItemProgressToJSON(json: any): ItemProgress; export declare function ItemProgressToJSONTyped(value?: ItemProgress | null, ignoreDiscriminator?: boolean): any;