/** * 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 CreateThankYouLinkResponse */ export interface CreateThankYouLinkResponse { /** * * @type {Link} * @memberof CreateThankYouLinkResponse */ link?: Link; } /** * Check if a given object implements the CreateThankYouLinkResponse interface. */ export declare function instanceOfCreateThankYouLinkResponse(value: object): value is CreateThankYouLinkResponse; export declare function CreateThankYouLinkResponseFromJSON(json: any): CreateThankYouLinkResponse; export declare function CreateThankYouLinkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateThankYouLinkResponse; export declare function CreateThankYouLinkResponseToJSON(json: any): CreateThankYouLinkResponse; export declare function CreateThankYouLinkResponseToJSONTyped(value?: CreateThankYouLinkResponse | null, ignoreDiscriminator?: boolean): any;