Class: Quickfix::StipulationValue

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ StipulationValue

Returns a new instance of StipulationValue.



5843
5844
5845
5846
5847
5848
5849
# File 'lib/quickfix_fields.rb', line 5843

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

Class Method Details

.fieldObject



5840
5841
5842
# File 'lib/quickfix_fields.rb', line 5840

def StipulationValue.field
	return 234
end