Class: Quickfix::PutOrCall

Inherits:
IntField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

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

.fieldObject



14524
14525
14526
# File 'lib/quickfix_fields.rb', line 14524

def PutOrCall.field
	return 201
end