Class: Quickfix::SettlCurrency

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SettlCurrency

Returns a new instance of SettlCurrency.



916
917
918
919
920
921
922
# File 'lib/quickfix_fields.rb', line 916

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

Class Method Details

.fieldObject



913
914
915
# File 'lib/quickfix_fields.rb', line 913

def SettlCurrency.field
	return 120
end