three.MF.V3.Settings.CopyProject

 1class CopyProject:
 2
 3    """
 4     Copy project settings.
 5    """
 6    def __init__(self, index: int, copyName: str = None):
 7        # The index of the project to copy.
 8        self.index = index
 9        # The name of project copy.  If unspecified a default copy name is generated.
10        self.copyName = copyName
class CopyProject:
 2class CopyProject:
 3
 4    """
 5     Copy project settings.
 6    """
 7    def __init__(self, index: int, copyName: str = None):
 8        # The index of the project to copy.
 9        self.index = index
10        # The name of project copy.  If unspecified a default copy name is generated.
11        self.copyName = copyName

Copy project settings.

CopyProject(index: int, copyName: str = None)
 7    def __init__(self, index: int, copyName: str = None):
 8        # The index of the project to copy.
 9        self.index = index
10        # The name of project copy.  If unspecified a default copy name is generated.
11        self.copyName = copyName
index
copyName