Class: Quickfix::CreditRating

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CreditRating

Returns a new instance of CreditRating.



448
449
450
451
452
453
454
# File 'lib/quickfix_fields.rb', line 448

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

Class Method Details

.fieldObject



445
446
447
# File 'lib/quickfix_fields.rb', line 445

def CreditRating.field
	return 255
end