/** * 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 CreateContactLinkResponse */ export interface CreateContactLinkResponse { /** * * @type {Link} * @memberof CreateContactLinkResponse */ link?: Link; } /** * Check if a given object implements the CreateContactLinkResponse interface. */ export declare function instanceOfCreateContactLinkResponse(value: object): value is CreateContactLinkResponse; export declare function CreateContactLinkResponseFromJSON(json: any): CreateContactLinkResponse; export declare function CreateContactLinkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateContactLinkResponse; export declare function CreateContactLinkResponseToJSON(json: any): CreateContactLinkResponse; export declare function CreateContactLinkResponseToJSONTyped(value?: CreateContactLinkResponse | null, ignoreDiscriminator?: boolean): any;