/** * 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 { FormField } from './FormField'; /** * * @export * @interface FormPayload */ export interface FormPayload { /** * * @type {boolean} * @memberof FormPayload */ autoSkipIfKnown?: boolean; /** * * @type {string} * @memberof FormPayload */ formDescription?: string; /** * * @type {Array} * @memberof FormPayload */ formFields?: Array; /** * * @type {string} * @memberof FormPayload */ formTitle?: string; /** * * @type {string} * @memberof FormPayload */ skipButtonText?: string; /** * * @type {boolean} * @memberof FormPayload */ skipForm?: boolean; /** * * @type {string} * @memberof FormPayload */ submitButtonText?: string; } /** * Check if a given object implements the FormPayload interface. */ export declare function instanceOfFormPayload(value: object): value is FormPayload; export declare function FormPayloadFromJSON(json: any): FormPayload; export declare function FormPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormPayload; export declare function FormPayloadToJSON(json: any): FormPayload; export declare function FormPayloadToJSONTyped(value?: FormPayload | null, ignoreDiscriminator?: boolean): any;