/** * 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 RemovalPrResult */ export interface RemovalPrResult { /** * * @type {boolean} * @memberof RemovalPrResult */ merged?: boolean; /** * * @type {string} * @memberof RemovalPrResult */ message?: string; /** * * @type {string} * @memberof RemovalPrResult */ outcome?: string; /** * * @type {string} * @memberof RemovalPrResult */ prUrl?: string; } /** * Check if a given object implements the RemovalPrResult interface. */ export declare function instanceOfRemovalPrResult(value: object): value is RemovalPrResult; export declare function RemovalPrResultFromJSON(json: any): RemovalPrResult; export declare function RemovalPrResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemovalPrResult; export declare function RemovalPrResultToJSON(json: any): RemovalPrResult; export declare function RemovalPrResultToJSONTyped(value?: RemovalPrResult | null, ignoreDiscriminator?: boolean): any;