Sha256: eaccd61b6c21dfda5cd32f82f8a435cd4284d9af97332fd3bb6f6a5dcace5a55
Contents?: true
Size: 728 Bytes
Versions: 4
Compression:
Stored size: 728 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 79 # - Name: Lading Description # - Type: AN # - Min/Max: 1/50 # - Description: Description of an item as required for rating and billing purposes class E79 < Eddy::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "79" @name = "Lading Description" @description = "Description of an item as required for rating and billing purposes" super( min: 1, max: 50, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems