Module Values.NotebookSessionSummarySource

Contains the notebook session ID and notebook session creation time.

Sourcetype nonrec t = {
  1. sessionId : SessionId.t option;
    (*

    The notebook session ID.

    *)
  2. creationTime : Date.t option;
    (*

    The time when the notebook session was created.

    *)
}
Sourceval make : ?sessionId:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SessionId.t | `Timestamp of Date.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t