Class: Quickfix::StipulationValue

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StipulationValue

Returns a new instance of StipulationValue.



19831
19832
19833
19834
19835
19836
19837
# File 'lib/quickfix_fields.rb', line 19831

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

Class Method Details

.fieldObject



19828
19829
19830
# File 'lib/quickfix_fields.rb', line 19828

def StipulationValue.field
	return 234
end