DataSourceInfo constructor

Contents
[ ]

init

Creates a new instance of this class without any properties specified.

def __init__(self):
    ...

init

Creates a new instance of this class with the data source object specified.

def __init__(self, data_source):
    ...
Parameter Type Description
data_source any The data source object.

init

Creates a new instance of this class with the data source object and its name specified.

def __init__(self, data_source, name):
    ...
Parameter Type Description
data_source any The data source object.
name str The name of the data source object to be used to access the data source object in a template document.

See Also