Module Values.X12AcknowledgmentOptionsSource

Contains options for configuring X12 acknowledgments. These options control how functional and technical acknowledgments are handled.

Sourcetype nonrec t = {
  1. functionalAcknowledgment : X12FunctionalAcknowledgment.t;
    (*

    Specifies whether functional acknowledgments (997/999) should be generated for incoming X12 transactions. Valid values are DO_NOT_GENERATE, GENERATE_ALL_SEGMENTS and GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP. If you choose GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP, Amazon Web Services B2B Data Interchange skips the AK2_Loop when generating an acknowledgment document.

    *)
  2. technicalAcknowledgment : X12TechnicalAcknowledgment.t;
    (*

    Specifies whether technical acknowledgments (TA1) should be generated for incoming X12 interchanges. Valid values are DO_NOT_GENERATE and GENERATE_ALL_SEGMENTS and.

    *)
}
Sourceval context_ : string
Sourceval make : functionalAcknowledgment:X12FunctionalAcknowledgment.t -> technicalAcknowledgment:X12TechnicalAcknowledgment.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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