OfxRequestDocument constructor

OfxRequestDocument()

Initializes a new instance of OfxRequestDocument class.

def __init__(self):
    ...

OfxRequestDocument(file_name)

Initializes a new instance of OfxRequestDocument class.

def __init__(self, file_name):
    ...
ParameterTypeDescription
file_namestrThe ofx file name.

OfxRequestDocument(stream)

Initializes a new instance of OfxRequestDocument class.

def __init__(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe ofx file stream.

OfxRequestDocument(file_name, options)

Initializes a new instance of OfxRequestDocument class.

def __init__(self, file_name, options):
    ...
ParameterTypeDescription
file_namestrThe ofx file name.
optionsLoadOptionsThe load options.

OfxRequestDocument(stream, options)

Initializes a new instance of OfxRequestDocument class.

def __init__(self, stream, options):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe file stream.
optionsLoadOptionsThe load options.

See Also