Class: Quickfix::Country

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Country

Returns a new instance of Country.



19675
19676
19677
19678
19679
19680
19681
# File 'lib/quickfix_fields.rb', line 19675

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

Class Method Details

.fieldObject



19672
19673
19674
# File 'lib/quickfix_fields.rb', line 19672

def Country.field
	return 421
end