Class: Quickfix::AccountType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ AccountType

Returns a new instance of AccountType.



7910
7911
7912
7913
7914
7915
7916
# File 'lib/quickfix_fields.rb', line 7910

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

Class Method Details

.fieldObject



7907
7908
7909
# File 'lib/quickfix_fields.rb', line 7907

def AccountType.field
  return 581
end