class Eddy::Elements::I13
### Element Summary:
-
Id:
I13
-
Name: Acknowledgment Requested
-
Type: ID
-
Min/Max: 1/1
-
Description: Code sent by the sender to request an interchange acknowledgment (`TA1`)
### Notes:
-
Default value: `“0”`
Public Class Methods
new(val: "0", req: nil, ref: nil)
click to toggle source
@param val [String] (“0”) @param req [String] (nil) @param ref [String] (nil) @return [void]
Calls superclass method
Eddy::Models::Element::ID::new
# File lib/definitions/elements/manual/i/I13.acknowledgment_requested.rb, line 20 def initialize(val: "0", req: nil, ref: nil) @id = "I13" @name = "Acknowledgment Requested" @description = "Code sent by the sender to request an interchange acknowledgment (`TA1`)" super( min: 1, max: 1, 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/I13.acknowledgment_requested.rb, line 34 def code_list() return [ "0", # No Acknowledgment Requested "1", # Interchange Acknowledgment Requested ] end