Class: Quickfix::YieldType

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ YieldType

Returns a new instance of YieldType.



6909
6910
6911
6912
6913
6914
6915
# File 'lib/quickfix_fields.rb', line 6909

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

Class Method Details

.fieldObject



6906
6907
6908
# File 'lib/quickfix_fields.rb', line 6906

def YieldType.field
	return 235
end