Module Values.RouteFerryAfterTravelStepSource

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

Sourcetype nonrec t = {
  1. duration : DurationSeconds.t option;
    (*

    Duration of the step. Unit: seconds

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

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

    *)
  3. type_ : RouteFerryAfterTravelStepType.t option;
    (*

    Type of the step.

    *)
}
Sourceval make : ?duration:??? -> ?instruction:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of DurationSeconds.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