Class: Quickfix::CouponType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CouponType

Returns a new instance of CouponType.



25486
25487
25488
25489
25490
25491
25492
# File 'lib/quickfix_fields.rb', line 25486

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