Class: Quickfix::SecondaryAssetClass

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SecondaryAssetClass

Returns a new instance of SecondaryAssetClass.



25889
25890
25891
25892
25893
25894
25895
# File 'lib/quickfix_fields.rb', line 25889

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

Class Method Details

.fieldObject



25886
25887
25888
# File 'lib/quickfix_fields.rb', line 25886

def SecondaryAssetClass.field
  return 1977
end