Class: Quickfix::OnBehalfOfSendingTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OnBehalfOfSendingTime

Returns a new instance of OnBehalfOfSendingTime.



4647
4648
4649
4650
4651
4652
4653
# File 'lib/quickfix_fields.rb', line 4647

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