Sha256: 31376e05a3452e081ac333855f5856f5bdc47048b7d003021f664d2ffdbb8f6e
Contents?: true
Size: 819 Bytes
Versions: 4
Compression:
Stored size: 819 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 328 # - Name: Release Number # - Type: AN # - Min/Max: 1/30 # - Description: Number identifying a release against a Purchase Order previously placed by the parties involved in the transaction class E328 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "328" @name = "Release Number" @description = "Number identifying a release against a Purchase Order previously placed by the parties involved in the transaction" super( min: 1, max: 30, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems