Sha256: 7ae1e4be8ff649f4093c31bc32c13fa10cd57b94760de991e78b2a995116af4d
Contents?: true
Size: 927 Bytes
Versions: 4
Compression:
Stored size: 927 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 325 # - Name: Tax Identification Number # - Type: AN # - Min/Max: 1/20 # - Description: Number assigned to a purchaser (buyer, orderer) by a taxing jurisdiction (state, county, etc.); often called a tax exemption number or certificate number class E325 < Eddy::Models::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "325" @name = "Tax Identification Number" @description = "Number assigned to a purchaser (buyer, orderer) by a taxing jurisdiction (state, county, etc.); often called a tax exemption number or certificate number" super( min: 1, max: 20, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems