Class: Quickfix::SettlementAmountCurrency

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SettlementAmountCurrency

Returns a new instance of SettlementAmountCurrency.



22262
22263
22264
22265
22266
22267
22268
# File 'lib/quickfix_fields.rb', line 22262

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

Class Method Details

.fieldObject



22259
22260
22261
# File 'lib/quickfix_fields.rb', line 22259

def SettlementAmountCurrency.field
  return 1702
end