Class: Quickfix::OnBehalfOfSendingTime

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

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

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

Class Method Details

.fieldObject



4644
4645
4646
# File 'lib/quickfix_fields.rb', line 4644

def OnBehalfOfSendingTime.field
	return 370
end