Class: Quickfix::SendingDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SendingDate

Returns a new instance of SendingDate.



18778
18779
18780
18781
18782
18783
18784
# File 'lib/quickfix_fields.rb', line 18778

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

Class Method Details

.fieldObject



18775
18776
18777
# File 'lib/quickfix_fields.rb', line 18775

def SendingDate.field
  return 51
end