Class: Quickfix::ProgPeriodInterval

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ProgPeriodInterval

Returns a new instance of ProgPeriodInterval.



5180
5181
5182
5183
5184
5185
5186
# File 'lib/quickfix_fields.rb', line 5180

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

Class Method Details

.fieldObject



5177
5178
5179
# File 'lib/quickfix_fields.rb', line 5177

def ProgPeriodInterval.field
	return 415
end