three.MF.V3.Settings.Project

 1class Project:
 2
 3    """
 4     Project settings.
 5    """
 6    def __init__(self, index: int = None, name: str = None):
 7        """The index identifying which project the settings applies to.
 8        If undefined the current open project is used."""
 9        self.index = index
10        # Project name.
11        self.name = name
class Project:
 2class Project:
 3
 4    """
 5     Project settings.
 6    """
 7    def __init__(self, index: int = None, name: str = None):
 8        """The index identifying which project the settings applies to.
 9        If undefined the current open project is used."""
10        self.index = index
11        # Project name.
12        self.name = name

Project settings.

Project(index: int = None, name: str = None)
 7    def __init__(self, index: int = None, name: str = None):
 8        """The index identifying which project the settings applies to.
 9        If undefined the current open project is used."""
10        self.index = index
11        # Project name.
12        self.name = name

The index identifying which project the settings applies to. If undefined the current open project is used.

index
name