Class: Quickfix::ClearingAccount

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ClearingAccount

Returns a new instance of ClearingAccount.



5505
5506
5507
5508
5509
5510
5511
# File 'lib/quickfix_fields.rb', line 5505

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

Class Method Details

.fieldObject



5502
5503
5504
# File 'lib/quickfix_fields.rb', line 5502

def ClearingAccount.field
  return 440
end