Class: Quickfix::UnderlyingFXRate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingFXRate

Returns a new instance of UnderlyingFXRate.



13370
13371
13372
13373
13374
13375
13376
# File 'lib/quickfix_fields.rb', line 13370

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

Class Method Details

.fieldObject



13367
13368
13369
# File 'lib/quickfix_fields.rb', line 13367

def UnderlyingFXRate.field
	return 1045
end