Class: Quickfix::CollStatus

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollStatus

Returns a new instance of CollStatus.



15788
15789
15790
15791
15792
15793
15794
# File 'lib/quickfix_fields.rb', line 15788

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

Class Method Details

.fieldObject



15785
15786
15787
# File 'lib/quickfix_fields.rb', line 15785

def CollStatus.field
  return 910
end