/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Link } from './Link'; /** * * @export * @interface GetLinkResponse */ export interface GetLinkResponse { /** * * @type {Link} * @memberof GetLinkResponse */ link?: Link; } /** * Check if a given object implements the GetLinkResponse interface. */ export declare function instanceOfGetLinkResponse(value: object): value is GetLinkResponse; export declare function GetLinkResponseFromJSON(json: any): GetLinkResponse; export declare function GetLinkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLinkResponse; export declare function GetLinkResponseToJSON(json: any): GetLinkResponse; export declare function GetLinkResponseToJSONTyped(value?: GetLinkResponse | null, ignoreDiscriminator?: boolean): any;