+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "LinkModel"
keywords = ["grafana","documentation","sdk","@grafana/data"]
type = "docs"
+++
## LinkModel interface
Processed Link Model. The values are ready to use
Signature
```typescript
export interface LinkModel
```
Import
```typescript
import { LinkModel } from '@grafana/data';
```
Properties
| Property | Type | Description |
| --- | --- | --- |
| [href](#href-property) | string
| |
| [onClick](#onclick-property) | (e: any) => void
| |
| [origin](#origin-property) | T
| |
| [target](#target-property) | LinkTarget
| |
| [title](#title-property) | string
| |
### href property
Signature
```typescript
href: string;
```
### onClick property
Signature
```typescript
onClick?: (e: any) => void;
```
### origin property
Signature
```typescript
origin: T;
```
### target property
Signature
```typescript
target: LinkTarget;
```
### title property
Signature
```typescript
title: string;
```