Class: Quickfix::GoverningLaw

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ GoverningLaw

Returns a new instance of GoverningLaw.



25798
25799
25800
25801
25802
25803
25804
# File 'lib/quickfix_fields.rb', line 25798

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