Module Values.As2AsyncMdnConnectorConfigSource

Contains the configuration details for asynchronous Message Disposition Notification (MDN) responses in AS2 connectors. This configuration specifies where asynchronous MDN responses should be sent and which servers should handle them.

Sourcetype nonrec t = {
  1. url : Url.t option;
    (*

    The URL endpoint where asynchronous MDN responses should be sent.

    *)
  2. serverIds : As2AsyncMdnServerIds.t option;
    (*

    A list of server identifiers that can handle asynchronous MDN responses. You can specify between 1 and 10 server IDs.

    *)
}
Sourceval make : ?url:??? -> ?serverIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ServerId.t ] list | `String of Url.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