Module Values.X12DelimitersSource

In X12 EDI messages, delimiters are used to mark the end of segments or elements, and are defined in the interchange control header. The delimiters are part of the message's syntax and divide up its different elements.

Sourcetype nonrec t = {
  1. componentSeparator : X12ComponentSeparator.t option;
    (*

    The component, or sub-element, separator. The default value is : (colon).

    *)
  2. dataElementSeparator : X12DataElementSeparator.t option;
    (*

    The data element separator. The default value is * (asterisk).

    *)
  3. segmentTerminator : X12SegmentTerminator.t option;
    (*

    The segment terminator. The default value is ~ (tilde).

    *)
}
Sourceval make : ?componentSeparator:??? -> ?dataElementSeparator:??? -> ?segmentTerminator:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of X12ComponentSeparator.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