/** * 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. */ /** * Summarizes how a visitor has interacted with a specific link so Linkbreakers can surface per-campaign engagement history. * @export * @interface VisitorLink */ export interface VisitorLink { /** * * @type {string} * @memberof VisitorLink */ entrypoint?: string; /** * * @type {string} * @memberof VisitorLink */ eventCount?: string; /** * * @type {Date} * @memberof VisitorLink */ firstVisitedAt?: Date; /** * * @type {string} * @memberof VisitorLink */ id?: string; /** * * @type {Date} * @memberof VisitorLink */ lastVisitedAt?: Date; /** * * @type {string} * @memberof VisitorLink */ name?: string; /** * * @type {string} * @memberof VisitorLink */ shortlink?: string; } /** * Check if a given object implements the VisitorLink interface. */ export declare function instanceOfVisitorLink(value: object): value is VisitorLink; export declare function VisitorLinkFromJSON(json: any): VisitorLink; export declare function VisitorLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): VisitorLink; export declare function VisitorLinkToJSON(json: any): VisitorLink; export declare function VisitorLinkToJSONTyped(value?: VisitorLink | null, ignoreDiscriminator?: boolean): any;