Sha256: 043ac3f01c1c44897839c5b82af5bb5f2c002bff09168762907b1e82db9596a9
Contents?: true
Size: 537 Bytes
Versions: 16
Compression:
Stored size: 537 Bytes
Contents
module Eancom module Edifact class UNZ < Segment TAG = 'UNZ'.freeze TYPE = :footer.freeze def initialize( tag: nil, interchange_control_count:, interchange_control_reference: ) @tag = tag @interchange_control_count = interchange_control_count @interchange_control_reference = interchange_control_reference super(tag: tag || TAG) end def to_json_hash {} end def segment_type TYPE end end end end
Version data entries
16 entries across 16 versions & 1 rubygems