/** * 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. */ /** * - MESSAGE_PAGE_NAVIGATION_TYPE_UNSPECIFIED: Navigation type not specified * - MESSAGE_PAGE_NAVIGATION_TYPE_BUTTON: Visitor clicks a button to proceed * - MESSAGE_PAGE_NAVIGATION_TYPE_TIMER: Visitor is automatically redirected after a timer expires * @export */ export declare const MessagePageNavigationType: { readonly MessagePageNavigationTypeUnspecified: "MESSAGE_PAGE_NAVIGATION_TYPE_UNSPECIFIED"; readonly MessagePageNavigationTypeButton: "MESSAGE_PAGE_NAVIGATION_TYPE_BUTTON"; readonly MessagePageNavigationTypeTimer: "MESSAGE_PAGE_NAVIGATION_TYPE_TIMER"; }; export type MessagePageNavigationType = typeof MessagePageNavigationType[keyof typeof MessagePageNavigationType]; export declare function instanceOfMessagePageNavigationType(value: any): boolean; export declare function MessagePageNavigationTypeFromJSON(json: any): MessagePageNavigationType; export declare function MessagePageNavigationTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessagePageNavigationType; export declare function MessagePageNavigationTypeToJSON(value?: MessagePageNavigationType | null): any; export declare function MessagePageNavigationTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): MessagePageNavigationType;