Class: Quickfix::TransferType
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::TransferType
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ TransferType
constructor
A new instance of TransferType.
Constructor Details
#initialize(data = nil) ⇒ TransferType
Returns a new instance of TransferType.
60586 60587 60588 60589 60590 60591 60592 |
# File 'lib/quickfix_fields.rb', line 60586 def initialize(data = nil) if( data == nil ) super(2440) else super(2440, data) end end |