Class: Quickfix::Issuer

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ Issuer

Returns a new instance of Issuer.



630
631
632
633
634
635
636
# File 'lib/quickfix_fields.rb', line 630

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

Class Method Details

.fieldObject



627
628
629
# File 'lib/quickfix_fields.rb', line 627

def Issuer.field
  return 106
end