Module Values.RemoteAccessEndpointsSource

Represents the remote endpoints for viewing and controlling a device during a remote access session.

Sourcetype nonrec t = {
  1. remoteDriverEndpoint : SensitiveURL.t option;
    (*

    URL for controlling the device using WebDriver-compliant clients, like Appium, during the remote access session.

    *)
  2. interactiveEndpoint : SensitiveURL.t option;
    (*

    URL for viewing and interacting with the device during the remote access session.

    *)
}
Sourceval make : ?remoteDriverEndpoint:??? -> ?interactiveEndpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SensitiveURL.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