Sha256: c902beba028358dba05915facf915305f63c467be49f86551b1a67b8e1f26d41
Contents?: true
Size: 765 Bytes
Versions: 4
Compression:
Stored size: 765 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 364 # - Name: Communication Number # - Type: AN # - Min/Max: 1/80 # - Description: Complete communications number including country or area code when applicable class E364 < Eddy::Models::Element::AN # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "364" @name = "Communication Number" @description = "Complete communications number including country or area code when applicable" super( min: 1, max: 80, req: req, ref: ref, val: val, ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems