[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Runtime](./puppeteer.protocol.runtime.md) > [ObjectPreview](./puppeteer.protocol.runtime.objectpreview.md)
## Protocol.Runtime.ObjectPreview interface
Object containing abbreviated remote object value.
Signature:
```typescript
export interface ObjectPreview
```
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [description](./puppeteer.protocol.runtime.objectpreview.description.md) | string | String representation of the object. |
| [entries](./puppeteer.protocol.runtime.objectpreview.entries.md) | [EntryPreview](./puppeteer.protocol.runtime.entrypreview.md)\[\] | List of the entries. Specified for map
and set
subtype values only. |
| [overflow](./puppeteer.protocol.runtime.objectpreview.overflow.md) | boolean | True iff some of the properties or entries of the original object did not fit. |
| [properties](./puppeteer.protocol.runtime.objectpreview.properties.md) | [PropertyPreview](./puppeteer.protocol.runtime.propertypreview.md)\[\] | List of the properties. |
| [subtype](./puppeteer.protocol.runtime.objectpreview.subtype.md) | ('array' \| 'null' \| 'node' \| 'regexp' \| 'date' \| 'map' \| 'set' \| 'weakmap' \| 'weakset' \| 'iterator' \| 'generator' \| 'error') | Object subtype hint. Specified for object
type values only. (ObjectPreviewSubtype enum) |
| [type](./puppeteer.protocol.runtime.objectpreview.type.md) | ('object' \| 'function' \| 'undefined' \| 'string' \| 'number' \| 'boolean' \| 'symbol' \| 'bigint') | Object type. (ObjectPreviewType enum) |