Class: Quickfix::ExpireDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExpireDate

Returns a new instance of ExpireDate.



10380
10381
10382
10383
10384
10385
10386
# File 'lib/quickfix_fields.rb', line 10380

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

Class Method Details

.fieldObject



10377
10378
10379
# File 'lib/quickfix_fields.rb', line 10377

def ExpireDate.field
	return 432
end