class Eddy::Elements::I07
### Element Summary:
-
Id:
I07
-
Name: Interchange Receiver ID
-
Type: AN
-
Min/Max: 15/15
-
Description: Identification code published by the receiver of the data; When sending, it is used by the sender as their sending ID, thus other parties sending to them will use this as a receiving ID to route data to them
Public Class Methods
new(val: nil, req: nil, ref: nil)
click to toggle source
@param val [String] (nil) @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::AN::new
# File lib/definitions/elements/manual/i/I07.interchange_receiver_id.rb, line 15 def initialize(val: nil, req: nil, ref: nil) @id = "I07" @name = "Interchange Receiver ID" @description = "Identification code published by the receiver of the data; When sending, it is used by the sender as their sending ID, thus other parties sending to them will use this as a receiving ID to route data to them" super( min: 15, max: 15, req: req, ref: ref, val: val, ) end