Class: Quickfix::ListStatusType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListStatusType

Returns a new instance of ListStatusType.



5362
5363
5364
5365
5366
5367
5368
# File 'lib/quickfix_fields.rb', line 5362

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