Class: Quickfix::AgreementDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ AgreementDate

Returns a new instance of AgreementDate.



15307
15308
15309
15310
15311
15312
15313
# File 'lib/quickfix_fields.rb', line 15307

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

Class Method Details

.fieldObject



15304
15305
15306
# File 'lib/quickfix_fields.rb', line 15304

def AgreementDate.field
  return 915
end