Current section

Files

Jump to
hl7v2 lib hl7v2 segment fts.ex
Raw

lib/hl7v2/segment/fts.ex

defmodule HL7v2.Segment.FTS do
@moduledoc """
File Trailer (FTS) segment — HL7v2 v2.5.1.
Defines the end of a batch file.
2 fields per HL7 v2.5.1 specification.
"""
use HL7v2.Segment,
id: "FTS",
fields: [
{1, :file_batch_count, HL7v2.Type.NM, :o, 1},
{2, :file_trailer_comment, HL7v2.Type.ST, :o, 1}
]
end