Class: Quickfix::SideRegulatoryTradeIDType

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) ⇒ SideRegulatoryTradeIDType

Returns a new instance of SideRegulatoryTradeIDType.



25863
25864
25865
25866
25867
25868
25869
# File 'lib/quickfix_fields.rb', line 25863

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

Class Method Details

.fieldObject



25860
25861
25862
# File 'lib/quickfix_fields.rb', line 25860

def SideRegulatoryTradeIDType.field
  return 1975
end