Module Values.X12SplitOptionsSource

Contains options for splitting X12 EDI files into smaller units. This is useful for processing large EDI files more efficiently.

Sourcetype nonrec t = {
  1. splitBy : X12SplitBy.t;
    (*

    Specifies the method used to split X12 EDI files. Valid values include TRANSACTION (split by individual transaction sets), or NONE (no splitting).

    *)
}
Sourceval context_ : string
Sourceval make : splitBy:X12SplitBy.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