Class: Quickfix::RegistStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from CharField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ RegistStatus

Returns a new instance of RegistStatus.



6961
6962
6963
6964
6965
6966
6967
# File 'lib/quickfix_fields.rb', line 6961

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

Class Method Details

.fieldObject



6958
6959
6960
# File 'lib/quickfix_fields.rb', line 6958

def RegistStatus.field
  return 506
end