Class: Quickfix::NoDeliverySchedules

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoDeliverySchedules

Returns a new instance of NoDeliverySchedules.



41554
41555
41556
41557
41558
41559
41560
# File 'lib/quickfix_fields.rb', line 41554

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