Sha256: 634b0d3fb27a1c73f29c365e4508688817cf505b4f5c798ba4dc8abf7f12eb8a
Contents?: true
Size: 799 Bytes
Versions: 4
Compression:
Stored size: 799 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 124 # - Name: Application Receiver's Code # - Type: AN # - Min/Max: 2/15 # - Description: Code identifying party receiving transmission. Codes agreed to by trading partners class E124 < Eddy::Element::AN # @param val [String] (nil) # @param req [String] (nil) # @param ref [String] (nil) # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "124" @name = "Application Receiver's Code" @description = "Code identifying party receiving transmission. Codes agreed to by trading partners" super( min: 2, max: 15, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems