Class: Quickfix::TransactionID

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



61610
61611
61612
# File 'lib/quickfix_fields.rb', line 61610

def TransactionID.field
	return 2485
end