Class: Quickfix::CardIssNum

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CardIssNum

Returns a new instance of CardIssNum.



5713
5714
5715
5716
5717
5718
5719
# File 'lib/quickfix_fields.rb', line 5713

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

Class Method Details

.fieldObject



5710
5711
5712
# File 'lib/quickfix_fields.rb', line 5710

def CardIssNum.field
  return 491
end