Class: Quickfix::PaymentMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PaymentMethod

Returns a new instance of PaymentMethod.



9366
9367
9368
9369
9370
9371
9372
# File 'lib/quickfix_fields.rb', line 9366

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

Class Method Details

.fieldObject



9363
9364
9365
# File 'lib/quickfix_fields.rb', line 9363

def PaymentMethod.field
	return 492
end