Class: Quickfix::PayRequestID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PayRequestID

Returns a new instance of PayRequestID.



77213
77214
77215
77216
77217
77218
77219
# File 'lib/quickfix_fields.rb', line 77213

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