Class: Quickfix::EndDate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EndDate

Returns a new instance of EndDate.



12395
12396
12397
12398
12399
12400
12401
# File 'lib/quickfix_fields.rb', line 12395

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

Class Method Details

.fieldObject



12392
12393
12394
# File 'lib/quickfix_fields.rb', line 12392

def EndDate.field
	return 917
end