/** * 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. */ /** * - ACTION_UNSPECIFIED: Action not specified * - ACTION_SCAN: QR code scan * - ACTION_CLICK: First-time direct link click * @export */ export declare const Action: { readonly ActionUnspecified: "ACTION_UNSPECIFIED"; readonly ActionScan: "ACTION_SCAN"; readonly ActionClick: "ACTION_CLICK"; }; export type Action = typeof Action[keyof typeof Action]; export declare function instanceOfAction(value: any): boolean; export declare function ActionFromJSON(json: any): Action; export declare function ActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Action; export declare function ActionToJSON(value?: Action | null): any; export declare function ActionToJSONTyped(value: any, ignoreDiscriminator: boolean): Action;