Class: Quickfix::UnderlyingCreditRating

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingCreditRating

Returns a new instance of UnderlyingCreditRating.



6129
6130
6131
6132
6133
6134
6135
# File 'lib/quickfix_fields.rb', line 6129

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