Class: Quickfix::BrokerOfCredit

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BrokerOfCredit

Returns a new instance of BrokerOfCredit.



1852
1853
1854
1855
1856
1857
1858
# File 'lib/quickfix_fields.rb', line 1852

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