Class: Quickfix::TransferInstructionID

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransferInstructionID

Returns a new instance of TransferInstructionID.



60534
60535
60536
60537
60538
60539
60540
# File 'lib/quickfix_fields.rb', line 60534

def initialize(data = nil)
	if( data == nil )
		super(2436)
	else
		super(2436, data)
	end
end