Sha256: 3181011cf2e6a81412163f5c7493ca1386b750fc2803be370606fd4709200462
Contents?: true
Size: 929 Bytes
Versions: 11
Compression:
Stored size: 929 Bytes
Contents
module Eddy module Elements # ### Element Summary: # # - Id: 662 # - Name: Relationship Code # - Type: ID # - Min/Max: 1/1 # - Description: Code indicating the relationship between entities class E662 < Eddy::Models::Element::ID # @param val [String] # @param req [String] # @param ref [String] # @return [void] def initialize(val: nil, req: nil, ref: nil) @id = "662" @name = "Relationship Code" @description = "Code indicating the relationship between entities" super( min: 1, max: 1, req: req, ref: ref, val: val, ) end # @return [Array<String>] def code_list() return [ "A", # Add "D", # Delete "I", # Included "O", # Information Only "S", # Substituted ] end end end end
Version data entries
11 entries across 11 versions & 1 rubygems