Class: Quickfix::TransactionID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransactionID

Returns a new instance of TransactionID.



61613
61614
61615
61616
61617
61618
61619
# File 'lib/quickfix_fields.rb', line 61613

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