Class: Quickfix::UnderlyingDividendAmountType

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

Returns a new instance of UnderlyingDividendAmountType.



71480
71481
71482
71483
71484
71485
71486
# File 'lib/quickfix_fields.rb', line 71480

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

Class Method Details

.fieldObject



71477
71478
71479
# File 'lib/quickfix_fields.rb', line 71477

def UnderlyingDividendAmountType.field
	return 42828
end