Module Values.IsolineTrailerOptionsSource

Additional specifications when the vehicle includes one or more trailers.

Sourcetype nonrec t = {
  1. axleCount : IsolineTrailerOptionsAxleCountInteger.t option;
    (*

    The total number of axles across all trailers. Used for weight distribution calculations and road restrictions.

    *)
  2. trailerCount : IsolineTrailerOptionsTrailerCountInteger.t option;
    (*

    The number of trailers being pulled. Affects which roads can be used based on local regulations. Default value: 0

    *)
}
Sourceval make : ?axleCount:??? -> ?trailerCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IsolineTrailerOptionsAxleCountInteger.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