Class: Quickfix::CouponType

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

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

Class Method Details

.fieldObject



25483
25484
25485
# File 'lib/quickfix_fields.rb', line 25483

def CouponType.field
  return 1946
end