Class: Quickfix::PutOrCall
- Inherits:
-
IntField
- Object
- IntField
- Quickfix::PutOrCall
- Defined in:
- lib/quickfix_fields.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ PutOrCall
constructor
A new instance of PutOrCall.
Constructor Details
#initialize(data = nil) ⇒ PutOrCall
Returns a new instance of PutOrCall.
14527 14528 14529 14530 14531 14532 14533 |
# File 'lib/quickfix_fields.rb', line 14527 def initialize(data = nil) if( data == nil ) super(201) else super(201, data) end end |
Class Method Details
.field ⇒ Object
14524 14525 14526 |
# File 'lib/quickfix_fields.rb', line 14524 def PutOrCall.field return 201 end |