Class: Quickfix::DeliveryDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DeliveryDate

Returns a new instance of DeliveryDate.



513
514
515
516
517
518
519
# File 'lib/quickfix_fields.rb', line 513

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

Class Method Details

.fieldObject



510
511
512
# File 'lib/quickfix_fields.rb', line 510

def DeliveryDate.field
	return 743
end