Module Values.GsmObjSource

GSM object.

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

    Mobile Country Code.

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

    Mobile Network Code.

    *)
  3. lac : LAC.t;
    (*

    Location area code.

    *)
  4. geranCid : GeranCid.t;
    (*

    GERAN (GSM EDGE Radio Access Network) Cell Global Identifier.

    *)
  5. gsmLocalId : GsmLocalId.t option;
    (*

    GSM local identification (local ID) information.

    *)
  6. gsmTimingAdvance : GsmTimingAdvance.t option;
    (*

    Timing advance value, which corresponds to the length of time a signal takes to reach the base station from a mobile phone.

    *)
  7. rxLevel : RxLevel.t option;
    (*

    Rx level, which is the received signal power, measured in dBm (decibel-milliwatts).

    *)
  8. gsmNmr : GsmNmrList.t option;
    (*

    GSM object for network measurement reports.

    *)
}
Sourceval context_ : string
Sourceval make : ?gsmLocalId:??? -> ?gsmTimingAdvance:??? -> ?rxLevel:??? -> ?gsmNmr:??? -> mcc:MCC.t -> mnc:MNC.t -> lac:LAC.t -> geranCid:GeranCid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MCC.t | `List of [> `Structure of (string * [> `Integer of BSIC.t | `Structure of (string * [> `Integer of LAC.t ]) list ]) list ] list | `Structure of (string * [> `Integer of BSIC.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