Class: Quickfix::NoCollateralAmounts

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

Returns a new instance of NoCollateralAmounts.



22275
22276
22277
22278
22279
22280
22281
# File 'lib/quickfix_fields.rb', line 22275

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

Class Method Details

.fieldObject



22272
22273
22274
# File 'lib/quickfix_fields.rb', line 22272

def NoCollateralAmounts.field
  return 1703
end