Class: Quickfix::AgreementDate

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

Returns a new instance of AgreementDate.



12369
12370
12371
12372
12373
12374
12375
# File 'lib/quickfix_fields.rb', line 12369

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

Class Method Details

.fieldObject



12366
12367
12368
# File 'lib/quickfix_fields.rb', line 12366

def AgreementDate.field
  return 915
end