Class: Quickfix::CcyAmt

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CcyAmt

Returns a new instance of CcyAmt.



15437
15438
15439
15440
15441
15442
15443
# File 'lib/quickfix_fields.rb', line 15437

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