Class: Quickfix::UnderlyingPayAmount

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingPayAmount

Returns a new instance of UnderlyingPayAmount.



16308
16309
16310
16311
16312
16313
16314
# File 'lib/quickfix_fields.rb', line 16308

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

Class Method Details

.fieldObject



16305
16306
16307
# File 'lib/quickfix_fields.rb', line 16305

def UnderlyingPayAmount.field
	return 985
end