Module Values.CustomerArtifactPathsSource

A JSON object that specifies the paths where the artifacts generated by the customer's tests, on the device or in the test environment, are pulled from. Specify deviceHostPaths and optionally specify either iosPaths or androidPaths. For web app tests, you can specify both iosPaths and androidPaths.

Sourcetype nonrec t = {
  1. iosPaths : IosPaths.t option;
    (*

    Comma-separated list of paths on the iOS device where the artifacts generated by the customer's tests are pulled from.

    *)
  2. androidPaths : AndroidPaths.t option;
    (*

    Comma-separated list of paths on the Android device where the artifacts generated by the customer's tests are pulled from.

    *)
  3. deviceHostPaths : DeviceHostPaths.t option;
    (*

    Comma-separated list of paths in the test execution environment where the artifacts generated by the customer's tests are pulled from.

    *)
}
Sourceval make : ?iosPaths:??? -> ?androidPaths:??? -> ?deviceHostPaths:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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