/** * 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 { VisitorInput } from './VisitorInput'; /** * * @export * @interface VisitorsServiceUpdateBody */ export interface VisitorsServiceUpdateBody { /** * * @type {VisitorInput} * @memberof VisitorsServiceUpdateBody */ visitor?: VisitorInput; } /** * Check if a given object implements the VisitorsServiceUpdateBody interface. */ export declare function instanceOfVisitorsServiceUpdateBody(value: object): value is VisitorsServiceUpdateBody; export declare function VisitorsServiceUpdateBodyFromJSON(json: any): VisitorsServiceUpdateBody; export declare function VisitorsServiceUpdateBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorsServiceUpdateBody; export declare function VisitorsServiceUpdateBodyToJSON(json: any): VisitorsServiceUpdateBody; export declare function VisitorsServiceUpdateBodyToJSONTyped(value?: VisitorsServiceUpdateBody | null, ignoreDiscriminator?: boolean): any;