/** * 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 Reference */ export interface Reference { /** * * @type {string} * @memberof Reference */ link?: string; /** * * @type {string} * @memberof Reference */ type?: string; } /** * Check if a given object implements the Reference interface. */ export declare function instanceOfReference(value: object): value is Reference; export declare function ReferenceFromJSON(json: any): Reference; export declare function ReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Reference; export declare function ReferenceToJSON(json: any): Reference; export declare function ReferenceToJSONTyped(value?: Reference | null, ignoreDiscriminator?: boolean): any;