Module Values.DvbNitSettingsSource

DVB Network Information Table (NIT)

Sourcetype nonrec t = {
  1. networkId : int;
    (*

    The numeric value placed in the Network Information Table (NIT).

    *)
  2. networkName : string;
    (*

    The network name text placed in the networkNameDescriptor inside the Network Information Table. Maximum length is 256 characters.

    *)
  3. repInterval : int option;
    (*

    The number of milliseconds between instances of this table in the output transport stream.

    *)
}
Sourceval context_ : string
Sourceval make : ?repInterval:??? -> networkId:int -> networkName:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `String 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