Module Values.TestEnvPreferenceInputSource

Input parameters for configuring test environment preferences for a procurement portal.

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

    The domain identifier to use for the buyer in the test environment.

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

    The unique identifier to use for the buyer in the test environment.

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

    The domain identifier to use for the supplier in the test environment.

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

    The unique identifier to use for the supplier in the test environment.

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

    The shared secret or authentication credential to use for secure communication in the test environment.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?procurementPortalSharedSecret:??? -> ?procurementPortalInstanceEndpoint:??? -> buyerDomain:BuyerDomain.t -> buyerIdentifier:BasicStringWithoutSpace.t -> supplierDomain:SupplierDomain.t -> supplierIdentifier:BasicStringWithoutSpace.t -> 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