Module Values.SandboxSessionSource

Contains information about the sandbox session.

Sourcetype nonrec t = {
  1. id : NonEmptyString.t option;
    (*

    The ID of the sandbox session.

    *)
  2. status : String_.t option;
    (*

    The status of the sandbox session.

    *)
  3. startTime : Timestamp.t option;
    (*

    When the sandbox session started, expressed in Unix time format.

    *)
  4. endTime : Timestamp.t option;
    (*

    When the sandbox session ended, expressed in Unix time format.

    *)
  5. currentPhase : String_.t option;
    (*

    The current phase for the sandbox.

    *)
  6. phases : SandboxSessionPhases.t option;
    (*

    An array of SandboxSessionPhase objects.

    *)
  7. resolvedSourceVersion : NonEmptyString.t option;
    (*

    An identifier for the version of this sandbox's source code.

    *)
  8. logs : LogsLocation.t option;
  9. networkInterface : NetworkInterface.t option;
}
Sourceval make : ?id:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?currentPhase:??? -> ?phases:??? -> ?resolvedSourceVersion:??? -> ?logs:??? -> ?networkInterface:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `Long of WrapperLong.t | `String of String_.t | `Timestamp of Timestamp.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Boolean of WrapperBoolean.t | `Enum of string | `String of String_.t ]) list ]) list | `Timestamp of Timestamp.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