Module Values.CanDbcDefinitionSource

Configurations used to create a decoder manifest.

Sourcetype nonrec t = {
  1. networkInterface : InterfaceId.t;
    (*

    Contains information about a network interface.

    *)
  2. canDbcFiles : NetworkFilesList.t;
    (*

    A list of DBC files. You can upload only one DBC file for each network interface and specify up to five (inclusive) files in the list. The DBC file can be a maximum size of 200 MB.

    *)
  3. signalsMap : ModelSignalsMap.t option;
    (*

    Pairs every signal specified in your vehicle model with a signal decoder.

    *)
}
Sourceval context_ : string
Sourceval make : ?signalsMap:??? -> networkInterface:InterfaceId.t -> canDbcFiles:NetworkFilesList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Blob of NetworkFileBlob.t ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of InterfaceId.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