Class: Quickfix::StartDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ StartDate

Returns a new instance of StartDate.



2060
2061
2062
2063
2064
2065
2066
# File 'lib/quickfix_fields.rb', line 2060

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

Class Method Details

.fieldObject



2057
2058
2059
# File 'lib/quickfix_fields.rb', line 2057

def StartDate.field
	return 916
end