Class: Quickfix::CardIssNum

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

Returns a new instance of CardIssNum.



9028
9029
9030
9031
9032
9033
9034
# File 'lib/quickfix_fields.rb', line 9028

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

Class Method Details

.fieldObject



9025
9026
9027
# File 'lib/quickfix_fields.rb', line 9025

def CardIssNum.field
  return 491
end