Module Values.RouteFerryTravelStepSource

Steps of a leg that must be performed during the travel portion of the leg.

Sourcetype nonrec t = {
  1. distance : DistanceMeters.t option;
    (*

    Distance of the step.

    *)
  2. duration : DurationSeconds.t option;
    (*

    Duration of the step. Unit: seconds

    *)
  3. geometryOffset : RouteFerryTravelStepGeometryOffsetInteger.t option;
    (*

    Offset in the leg geometry corresponding to the start of this step.

    *)
  4. instruction : SensitiveString.t option;
    (*

    Brief description of the step in the requested language. Only available when the TravelStepType is Default.

    *)
  5. type_ : RouteFerryTravelStepType.t option;
    (*

    Type of the step.

    *)
}
Sourceval make : ?distance:??? -> ?duration:??? -> ?geometryOffset:??? -> ?instruction:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of RouteFerryTravelStepGeometryOffsetInteger.t | `Long of DistanceMeters.t | `String of SensitiveString.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