Class: Quickfix::EncodedUnderlyingSecurityDesc

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

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

Constructor Details

#initialize(data = nil) ⇒ EncodedUnderlyingSecurityDesc

Returns a new instance of EncodedUnderlyingSecurityDesc.



4595
4596
4597
4598
4599
4600
4601
# File 'lib/quickfix_fields.rb', line 4595

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

Class Method Details

.fieldObject



4592
4593
4594
# File 'lib/quickfix_fields.rb', line 4592

def EncodedUnderlyingSecurityDesc.field
  return 365
end