/** * 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. */ /** * * @export * @interface ThankYouPagePayload */ export interface ThankYouPagePayload { /** * * @type {string} * @memberof ThankYouPagePayload */ description?: string; /** * * @type {string} * @memberof ThankYouPagePayload */ title: string; } /** * Check if a given object implements the ThankYouPagePayload interface. */ export declare function instanceOfThankYouPagePayload(value: object): value is ThankYouPagePayload; export declare function ThankYouPagePayloadFromJSON(json: any): ThankYouPagePayload; export declare function ThankYouPagePayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): ThankYouPagePayload; export declare function ThankYouPagePayloadToJSON(json: any): ThankYouPagePayload; export declare function ThankYouPagePayloadToJSONTyped(value?: ThankYouPagePayload | null, ignoreDiscriminator?: boolean): any;