Class: Quickfix::MarginAmtType

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

Returns a new instance of MarginAmtType.



20221
20222
20223
20224
20225
20226
20227
# File 'lib/quickfix_fields.rb', line 20221

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

Class Method Details

.fieldObject



20218
20219
20220
# File 'lib/quickfix_fields.rb', line 20218

def MarginAmtType.field
  return 1644
end