Module Values.DevEnvironmentSessionSummarySource

Information about active sessions for a Dev Environment.

Sourcetype nonrec t = {
  1. spaceName : NameString.t option;
    (*

    The name of the space.

    *)
  2. projectName : NameString.t option;
    (*

    The name of the project in the space.

    *)
  3. devEnvironmentId : Uuid.t option;
    (*

    The system-generated unique ID of the Dev Environment.

    *)
  4. startedTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the session started, in coordinated universal time (UTC) timestamp format as specified in RFC 3339

    *)
  5. id : DevEnvironmentSessionSummaryIdString.t option;
    (*

    The system-generated unique ID of the Dev Environment session.

    *)
}
Sourceval make : ?spaceName:??? -> ?projectName:??? -> ?devEnvironmentId:??? -> ?startedTime:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NameString.t | `Timestamp of SyntheticTimestamp_date_time.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