Module Values.TestGridSessionArtifactSource

Artifacts are video and other files that are produced in the process of running a browser in an automated context. Video elements might be broken up into multiple artifacts as they grow in size during creation.

Sourcetype nonrec t = {
  1. filename : String_.t option;
    (*

    The file name of the artifact.

    *)
  2. type_ : TestGridSessionArtifactType.t option;
    (*

    The kind of artifact.

    *)
  3. url : SensitiveString.t option;
    (*

    A semi-stable URL to the content of the object.

    *)
}
Sourceval make : ?filename:??? -> ?type_:??? -> ?url:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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