/** * 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. */ /** * Request body containing the component PURL * @export * @interface RecommendationRequest */ export interface RecommendationRequest { /** * * @type {string} * @memberof RecommendationRequest */ classifier?: string; /** * * @type {string} * @memberof RecommendationRequest */ extension?: string; /** * * @type {string} * @memberof RecommendationRequest */ purl?: string; } /** * Check if a given object implements the RecommendationRequest interface. */ export declare function instanceOfRecommendationRequest(value: object): value is RecommendationRequest; export declare function RecommendationRequestFromJSON(json: any): RecommendationRequest; export declare function RecommendationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RecommendationRequest; export declare function RecommendationRequestToJSON(json: any): RecommendationRequest; export declare function RecommendationRequestToJSONTyped(value?: RecommendationRequest | null, ignoreDiscriminator?: boolean): any;