# DatadogAPIClient::V1::NotebookResponseDataAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **author** | [**NotebookAuthor**](NotebookAuthor.md) | | [optional] | | **cells** | [**Array<NotebookCellResponse>**](NotebookCellResponse.md) | List of cells to display in the notebook. | | | **created** | **Time** | UTC time stamp for when the notebook was created. | [optional][readonly] | | **metadata** | [**NotebookMetadata**](NotebookMetadata.md) | | [optional] | | **modified** | **Time** | UTC time stamp for when the notebook was last modified. | [optional][readonly] | | **name** | **String** | The name of the notebook. | | | **status** | [**NotebookStatus**](NotebookStatus.md) | | [optional][default to 'published'] | | **time** | [**NotebookGlobalTime**](NotebookGlobalTime.md) | | | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::NotebookResponseDataAttributes.new( author: null, cells: [{"attributes":{"definition":{"text":"## Some test markdown\n\n```js\nvar x, y;\nx = 5;\ny = 6;\n```","type":"markdown"}},"id":"bzbycoya","type":"notebook_cells"},{"attributes":{"definition":{"requests":[{"display_type":"line","q":"avg:system.load.1{*}","style":{"line_type":"solid","line_width":"normal","palette":"dog_classic"}}],"show_legend":true,"type":"timeseries","yaxis":{"scale":"linear"}},"graph_size":"m","split_by":{"keys":[],"tags":[]},"time":null},"id":"9k6bc6xc","type":"notebook_cells"}], created: 2021-02-24T23:14:15.173964Z, metadata: null, modified: 2021-02-24T23:15:23.274966Z, name: Example Notebook, status: null, time: null ) ```