Class: Quickfix::ExpireDate

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

Returns a new instance of ExpireDate.



5401
5402
5403
5404
5405
5406
5407
# File 'lib/quickfix_fields.rb', line 5401

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

Class Method Details

.fieldObject



5398
5399
5400
# File 'lib/quickfix_fields.rb', line 5398

def ExpireDate.field
  return 432
end