# DatadogAPIClient::V1::NotebookUpdateDataAttributes ## Properties | Name | Type | Description | Notes | | ------------ | ------------------------------------------------------------ | ----------------------------------------- | ------------------------------------------ | | **cells** | [**Array<NotebookUpdateCell>**](NotebookUpdateCell.md) | List of cells to display in the notebook. | | | **metadata** | [**NotebookMetadata**](NotebookMetadata.md) | | [optional] | | **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::NotebookUpdateDataAttributes.new( 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"}], metadata: null, name: Example Notebook, status: null, time: null ) ```