Module Values_0.EndpointInfoSource

Information about the endpoint.

Sourcetype nonrec t = {
  1. type_ : EndpointType.t option;
    (*

    Type of endpoint.

    *)
  2. address : EndpointAddress.t option;
    (*

    Address of the endpoint.

    *)
  3. displayName : EndpointDisplayName.t option;
    (*

    Display name of the endpoint.

    *)
}
Sourceval make : ?type_:??? -> ?address:??? -> ?displayName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EndpointAddress.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