Module Values.X12OutboundEdiHeadersSource

A structure containing the details for an outbound EDI object.

Sourcetype nonrec t = {
  1. interchangeControlHeaders : X12InterchangeControlHeaders.t option;
    (*

    In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header.

    *)
  2. functionalGroupHeaders : X12FunctionalGroupHeaders.t option;
    (*

    The functional group headers for the X12 object.

    *)
  3. delimiters : X12Delimiters.t option;
    (*

    The delimiters, for example semicolon (;), that separates sections of the headers for the X12 object.

    *)
  4. validateEdi : X12ValidateEdi.t option;
    (*

    Specifies whether or not to validate the EDI for this X12 object: TRUE or FALSE. When enabled, this performs both standard EDI validation and applies any configured custom validation rules including element length constraints, code list validations, and element requirement checks. Validation results are returned in the response validation messages.

    *)
  5. controlNumbers : X12ControlNumbers.t option;
    (*

    Specifies control number configuration for outbound X12 EDI headers. These settings determine the starting values for interchange, functional group, and transaction set control numbers.

    *)
  6. gs05TimeFormat : X12GS05TimeFormat.t option;
}
Sourceval make : ?interchangeControlHeaders:??? -> ?functionalGroupHeaders:??? -> ?delimiters:??? -> ?validateEdi:??? -> ?controlNumbers:??? -> ?gs05TimeFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of X12ValidateEdi.t | `Enum of string | `Structure of (string * [> `Integer of StartingInterchangeControlNumber.t | `String of X12IdQualifier.t ]) list ]) 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