Class: Quickfix::ExpirationQtyType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ExpirationQtyType

Returns a new instance of ExpirationQtyType.



15151
15152
15153
15154
15155
15156
15157
# File 'lib/quickfix_fields.rb', line 15151

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