Class: Quickfix::CollateralAmountType

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

Returns a new instance of CollateralAmountType.



62796
62797
62798
62799
62800
62801
62802
# File 'lib/quickfix_fields.rb', line 62796

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

Class Method Details

.fieldObject



62793
62794
62795
# File 'lib/quickfix_fields.rb', line 62793

def CollateralAmountType.field
  return 2632
end