Class: Quickfix::StreamAsgnAckType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StreamAsgnAckType

Returns a new instance of StreamAsgnAckType.



19883
19884
19885
19886
19887
19888
19889
# File 'lib/quickfix_fields.rb', line 19883

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