Module Values.EnvironmentDetailsEntitySource

The details of a specified environment.

Sourcetype nonrec t = {
  1. jobId : JobId.t option;
    (*

    The job ID.

    *)
  2. environmentId : EnvironmentId.t option;
    (*

    The environment ID.

    *)
  3. schemaVersion : String_.t option;
    (*

    The schema version in the environment.

    *)
  4. template : Document.t option;
    (*

    The template used for the environment.

    *)
}
Sourceval make : ?jobId:??? -> ?environmentId:??? -> ?schemaVersion:??? -> ?template:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobId.t | `Structure of 'a list ]) 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