Class: Quickfix::UnderlyingPutOrCall

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

Returns a new instance of UnderlyingPutOrCall.



3984
3985
3986
3987
3988
3989
3990
# File 'lib/quickfix_fields.rb', line 3984

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

Class Method Details

.fieldObject



3981
3982
3983
# File 'lib/quickfix_fields.rb', line 3981

def UnderlyingPutOrCall.field
  return 315
end