Class: Quickfix::RepurchaseTerm

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ RepurchaseTerm

Returns a new instance of RepurchaseTerm.



5752
5753
5754
5755
5756
5757
5758
# File 'lib/quickfix_fields.rb', line 5752

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

Class Method Details

.fieldObject



5749
5750
5751
# File 'lib/quickfix_fields.rb', line 5749

def RepurchaseTerm.field
	return 226
end