Module Values.LteObjSource

LTE object.

Sourcetype nonrec t = {
  1. mcc : MCC.t;
    (*

    Mobile Country Code.

    *)
  2. mnc : MNC.t;
    (*

    Mobile Network Code.

    *)
  3. eutranCid : EutranCid.t;
    (*

    E-UTRAN (Evolved Universal Terrestrial Radio Access Network) Cell Global Identifier.

    *)
  4. tac : TAC.t option;
    (*

    LTE tracking area code.

    *)
  5. lteLocalId : LteLocalId.t option;
    (*

    LTE local identification (local ID) information.

    *)
  6. lteTimingAdvance : LteTimingAdvance.t option;
    (*

    LTE timing advance.

    *)
  7. rsrp : RSRP.t option;
    (*

    Signal power of the reference signal received, measured in dBm (decibel-milliwatts).

    *)
  8. rsrq : RSRQ.t option;
    (*

    Signal quality of the reference Signal received, measured in decibels (dB).

    *)
  9. nrCapable : NRCapable.t option;
    (*

    Parameter that determines whether the LTE object is capable of supporting NR (new radio).

    *)
  10. lteNmr : LteNmrList.t option;
    (*

    LTE object for network measurement reports.

    *)
}
Sourceval context_ : string
Sourceval make : ?tac:??? -> ?lteLocalId:??? -> ?lteTimingAdvance:??? -> ?rsrp:??? -> ?rsrq:??? -> ?nrCapable:??? -> ?lteNmr:??? -> mcc:MCC.t -> mnc:MNC.t -> eutranCid:EutranCid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NRCapable.t | `Float of RSRQ.t | `Integer of MCC.t | `List of [> `Structure of (string * [> `Float of RSRQ.t | `Integer of PCI.t ]) list ] list | `Structure of (string * [> `Integer of PCI.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