OfxResponseDocument constructor

OfxResponseDocument()

Initializes a new instance of OfxResponseDocument class.

def __init__(self):
    ...

OfxResponseDocument(file_name)

Initializes a new instance of OfxResponseDocument class.

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

OfxResponseDocument(stream)

Initializes a new instance of OfxResponseDocument class.

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

OfxResponseDocument(file_name, options)

Initializes a new instance of OfxResponseDocument class.

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

OfxResponseDocument(stream, options)

Initializes a new instance of OfxResponseDocument class.

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

See Also