class Eddy::Elements::I08
### Element Summary:
-
Id:
I08
-
Name: Interchange Date
-
Type: DT (YYMMDD)
-
Min/Max: 6/6
-
Description: Date of the interchange
### Notes:
This element's value will be generated by `Eddy`. No call to `value=` is needed.
Public Class Methods
new(val:, req: nil, ref: nil)
click to toggle source
@param val [Time] @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::DT::new
# File lib/definitions/elements/manual/i/I08.interchange_date.rb, line 20 def initialize(val:, req: nil, ref: nil) @id = "I08" @name = "Interchange Date" @description = "Date of the interchange" self.fmt = :yymmdd super( min: 6, max: 6, req: req, ref: ref, val: val, ) end