Class: Quickfix::TradeContinuation

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) ⇒ TradeContinuation

Returns a new instance of TradeContinuation.



25369
25370
25371
25372
25373
25374
25375
# File 'lib/quickfix_fields.rb', line 25369

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

Class Method Details

.fieldObject



25366
25367
25368
# File 'lib/quickfix_fields.rb', line 25366

def TradeContinuation.field
	return 1937
end