Module Values.SemtechGnssDetailSource

Details of the Semtech GNSS solver object.

Sourcetype nonrec t = {
  1. provider : PositionSolverProvider.t option;
    (*

    The vendor of the solver object.

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

    The type of positioning solver used.

    *)
  3. status : PositionConfigurationStatus.t option;
    (*

    The status indicating whether the solver is enabled.

    *)
  4. fec : PositionConfigurationFec.t option;
    (*

    Whether forward error correction is enabled.

    *)
}
Sourceval make : ?provider:??? -> ?type_:??? -> ?status:??? -> ?fec:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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