Class: Quickfix::CollateralType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CollateralType

Returns a new instance of CollateralType.



22314
22315
22316
22317
22318
22319
22320
# File 'lib/quickfix_fields.rb', line 22314

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