Class: Quickfix::AffirmStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AffirmStatus

Returns a new instance of AffirmStatus.



12681
12682
12683
12684
12685
12686
12687
# File 'lib/quickfix_fields.rb', line 12681

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