Class: Quickfix::ClearingAccount

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClearingAccount

Returns a new instance of ClearingAccount.



13045
13046
13047
13048
13049
13050
13051
# File 'lib/quickfix_fields.rb', line 13045

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

Class Method Details

.fieldObject



13042
13043
13044
# File 'lib/quickfix_fields.rb', line 13042

def ClearingAccount.field
	return 440
end