> ## Documentation Index
> Fetch the complete documentation index at: https://docs.galileo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# DatasetRow

***

# Type Alias: DatasetRow

```ts theme={null}
type DatasetRow = object;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

DatasetRow

## Properties

### index

```ts theme={null}
index: number;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Index

***

### metadata

```ts theme={null}
metadata: DatasetRowMetadata | null;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

***

### rowId

```ts theme={null}
rowId: string;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Row Id

***

### values

```ts theme={null}
values: (
  | string
  | number
  | {
[key: string]: null | string | number;
}
  | null)[];
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Values

***

### valuesDict

```ts theme={null}
valuesDict: object;
```

Defined in: [src/types/new-api.types.ts](https://github.com/rungalileo/galileo-js/blob/main/src/types/new-api.types.ts)

Values Dict

#### Index Signature

```ts theme={null}
[key: string]:
  | null
  | string
  | number
  | {
[key: string]: null | string | number;
}
```
