Module Values.X12FunctionalGroupHeadersSource

Part of the X12 message structure. These are the functional group headers for the X12 EDI object.

Sourcetype nonrec t = {
  1. applicationSenderCode : X12ApplicationSenderCode.t option;
    (*

    A value representing the code used to identify the party transmitting a message, at position GS-02.

    *)
  2. applicationReceiverCode : X12ApplicationReceiverCode.t option;
    (*

    A value representing the code used to identify the party receiving a message, at position GS-03.

    *)
  3. responsibleAgencyCode : X12ResponsibleAgencyCode.t option;
    (*

    A code that identifies the issuer of the standard, at position GS-07.

    *)
}
Sourceval make : ?applicationSenderCode:??? -> ?applicationReceiverCode:??? -> ?responsibleAgencyCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of X12ApplicationSenderCode.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