Module Values.NetworkHeaderSource

Details about a network path component that occurs before or after the current component.

Sourcetype nonrec t = {
  1. protocol : NonEmptyString.t option;
    (*

    The protocol used for the component. Length Constraints: Minimum of 1. Maximum of 16.

    *)
  2. destination : NetworkPathComponentDetails.t option;
    (*

    Information about the destination of the component.

    *)
  3. source : NetworkPathComponentDetails.t option;
    (*

    Information about the origin of the component.

    *)
}
Sourceval make : ?protocol:??? -> ?destination:??? -> ?source:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `List of [> `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ] list ]) list ]) 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