Class: Quickfix::RegistStatus

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

Instance Method Summary collapse

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