/** * 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 MessagePagePayload */ export interface MessagePagePayload { /** * * @type {string} * @memberof MessagePagePayload */ buttonLabel?: string; /** * * @type {string} * @memberof MessagePagePayload */ description?: string; /** * - 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 * @type {MessagePagePayloadNavigationTypeEnum} * @memberof MessagePagePayload */ navigationType: MessagePagePayloadNavigationTypeEnum; /** * * @type {number} * @memberof MessagePagePayload */ timerSeconds?: number; /** * * @type {string} * @memberof MessagePagePayload */ title: string; } /** * @export */ export declare const MessagePagePayloadNavigationTypeEnum: { readonly MessagePageNavigationTypeUnspecified: "MESSAGE_PAGE_NAVIGATION_TYPE_UNSPECIFIED"; readonly MessagePageNavigationTypeButton: "MESSAGE_PAGE_NAVIGATION_TYPE_BUTTON"; readonly MessagePageNavigationTypeTimer: "MESSAGE_PAGE_NAVIGATION_TYPE_TIMER"; }; export type MessagePagePayloadNavigationTypeEnum = typeof MessagePagePayloadNavigationTypeEnum[keyof typeof MessagePagePayloadNavigationTypeEnum]; /** * Check if a given object implements the MessagePagePayload interface. */ export declare function instanceOfMessagePagePayload(value: object): value is MessagePagePayload; export declare function MessagePagePayloadFromJSON(json: any): MessagePagePayload; export declare function MessagePagePayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): MessagePagePayload; export declare function MessagePagePayloadToJSON(json: any): MessagePagePayload; export declare function MessagePagePayloadToJSONTyped(value?: MessagePagePayload | null, ignoreDiscriminator?: boolean): any;