class Eddy::Elements::I03
### Element Summary:
-
Id:
I03
-
Name: Security Information Qualifier
-
Type: ID
-
Min/Max: 2/2
-
Description: Code to identify the type of information in the Security Information
### Notes:
-
(Default value: `“00”`)
Public Class Methods
new(val: "00", req: nil, ref: nil)
click to toggle source
@param val [String] (“00”) @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::ID::new
# File lib/definitions/elements/manual/i/I03.security_information_qualifier.rb, line 20 def initialize(val: "00", req: nil, ref: nil) @id = "I03" @name = "Security Information Qualifier" @description = "Code to identify the type of information in the Security Information" super( min: 2, max: 2, req: req, ref: ref, val: val, ) end
Public Instance Methods
code_list()
click to toggle source
@return [Array<String>]
# File lib/definitions/elements/manual/i/I03.security_information_qualifier.rb, line 34 def code_list() return [ "00", # No Security Information Present (No Meaningful Information in I04) "01", # Password ] end