Class: Quickfix::RemunerationIndicator

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ RemunerationIndicator

Returns a new instance of RemunerationIndicator.



75068
75069
75070
75071
75072
75073
75074
# File 'lib/quickfix_fields.rb', line 75068

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