Class: Quickfix::CollateralRequestNumber

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) ⇒ CollateralRequestNumber

Returns a new instance of CollateralRequestNumber.



61730
61731
61732
61733
61734
61735
61736
# File 'lib/quickfix_fields.rb', line 61730

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

Class Method Details

.fieldObject



61727
61728
61729
# File 'lib/quickfix_fields.rb', line 61727

def CollateralRequestNumber.field
  return 2518
end