Sha256: e15e49c077214ac771d1d1bcd5caead8bce161fb9ba502d03e670408de29fce6
Contents?: true
Size: 807 Bytes
Versions: 11
Compression:
Stored size: 807 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::Models::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
11 entries across 11 versions & 1 rubygems