/** * 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 UpdateLinkResponse */ export interface UpdateLinkResponse { /** * * @type {Link} * @memberof UpdateLinkResponse */ link?: Link; } /** * Check if a given object implements the UpdateLinkResponse interface. */ export declare function instanceOfUpdateLinkResponse(value: object): value is UpdateLinkResponse; export declare function UpdateLinkResponseFromJSON(json: any): UpdateLinkResponse; export declare function UpdateLinkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLinkResponse; export declare function UpdateLinkResponseToJSON(json: any): UpdateLinkResponse; export declare function UpdateLinkResponseToJSONTyped(value?: UpdateLinkResponse | null, ignoreDiscriminator?: boolean): any;