/** * 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. */ /** * - VISIT_TYPE_UNSPECIFIED: Visit type not specified * - VISIT_TYPE_FIRST: First time this device reaches this link * - VISIT_TYPE_RETURNING: Returning device reaching this link again * @export */ export declare const VisitType: { readonly VisitTypeUnspecified: "VISIT_TYPE_UNSPECIFIED"; readonly VisitTypeFirst: "VISIT_TYPE_FIRST"; readonly VisitTypeReturning: "VISIT_TYPE_RETURNING"; }; export type VisitType = typeof VisitType[keyof typeof VisitType]; export declare function instanceOfVisitType(value: any): boolean; export declare function VisitTypeFromJSON(json: any): VisitType; export declare function VisitTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitType; export declare function VisitTypeToJSON(value?: VisitType | null): any; export declare function VisitTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): VisitType;