Class: Quickfix::TrdAckStatus

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TrdAckStatus

Returns a new instance of TrdAckStatus.



21664
21665
21666
21667
21668
21669
21670
# File 'lib/quickfix_fields.rb', line 21664

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