Class: Quickfix::Account

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Account

Returns a new instance of Account.



15879
15880
15881
15882
15883
15884
15885
# File 'lib/quickfix_fields.rb', line 15879

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

Class Method Details

.fieldObject



15876
15877
15878
# File 'lib/quickfix_fields.rb', line 15876

def .field
  return 1
end