Sha256: 3b11d9c0685eee240be5673babcd3c7f2e74ecf2e07c7cba76828177137981d2
Contents?: true
Size: 662 Bytes
Versions: 4
Compression:
Stored size: 662 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 76 # - Name: Invoice Number # - Type: AN # - Min/Max: 1/22 # - Description: Identifying number assigned by issuer class E76 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "76" @name = "Invoice Number" @description = "Identifying number assigned by issuer" super( min: 1, max: 22, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems