Module Values.TestEnvPreferenceSource

Contains configuration settings for testing the procurement portal integration in a non-production environment.

Sourcetype nonrec t = {
  1. buyerDomain : BuyerDomain.t option;
    (*

    The domain identifier for the buyer in the test environment of the procurement portal.

    *)
  2. buyerIdentifier : BasicStringWithoutSpace.t option;
    (*

    The unique identifier for the buyer in the test environment of the procurement portal.

    *)
  3. supplierDomain : SupplierDomain.t option;
    (*

    The domain identifier for the supplier in the test environment of the procurement portal.

    *)
  4. supplierIdentifier : BasicStringWithoutSpace.t option;
    (*

    The unique identifier for the supplier in the test environment of the procurement portal.

    *)
  5. procurementPortalSharedSecret : BasicStringWithoutSpace.t option;
    (*

    The shared secret or authentication credential used for secure communication with the test environment.

    *)
  6. procurementPortalInstanceEndpoint : BasicStringWithoutSpace.t option;
    (*

    The endpoint URL where e-invoices are delivered in the test environment.

    *)
  7. purchaseOrderRetrievalEndpoint : BasicStringWithoutSpace.t option;
    (*

    The endpoint URL used for retrieving purchase orders in the test environment.

    *)
}
Sourceval make : ?buyerDomain:??? -> ?buyerIdentifier:??? -> ?supplierDomain:??? -> ?supplierIdentifier:??? -> ?procurementPortalSharedSecret:??? -> ?procurementPortalInstanceEndpoint:??? -> ?purchaseOrderRetrievalEndpoint:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BasicStringWithoutSpace.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