Values.NotebookMetadataSourceContains metadata for notebook, including the notebook name, ID, workgroup, and time created.
type nonrec t = {notebookId : NotebookId.t option;The notebook ID.
*)name : NotebookName.t option;The name of the notebook.
*)workGroup : WorkGroupName.t option;The name of the Spark enabled workgroup to which the notebook belongs.
*)creationTime : Date.t option;The time when the notebook was created.
*)type_ : NotebookType.t option;The type of notebook. Currently, the only valid type is IPYNB.
*)lastModifiedTime : Date.t option;The time when the notebook was last modified.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `String of NotebookId.t | `Timestamp of Date.t ])
list ]