Edi.X12.Hipaa.R5010.Segments.InterchangeControlTrailer (EDI X12 v0.1.4)
View SourceIEA - Interchange Control Trailer
To define the end of an interchange of zero or more functional groups and interchange-related control segments
Summary
Types
Functions
@spec parse(binary()) :: {:ok, t()} | {:error, binary()}
@spec parse(keyword() | map()) :: {:ok, t()} | {:error, binary()}
Convert the list into a struct.
Examples
iex> parse(elem_1: "Y", elem_2: "ZZ")
{:ok, %Struct{elem_1: "Y", elem_2: "ZZ"}}
Convert the list into a struct.
Examples
iex> parse!(elem_1: "Y", elem_2: "ZZ")
%Struct{
elem_1: "Y",
elem_2: "ZZ"
}