partial         void CopyExtraPropertiesToClone(ScheduleImportConfiguration clone, bool includeLocalProperties);
 public ScheduleImportConfiguration Clone(bool includeLocalProperties)
 {
     var c = new ScheduleImportConfiguration
             {
                 CombineResults = CombineResults,
                 Description = Description,
                 Enabled = Enabled,
                 ExecutionPackageId = ExecutionPackageId,
                 Id = Id,
                 MaximumNumberOfResultsRetained = MaximumNumberOfResultsRetained,
                 Name = Name,
                 NameTemplate = NameTemplate,
                 ScheduleId = ScheduleId,
                 ScriptPackageId = ScriptPackageId,
                 SkipIfFilesUnchanged = SkipIfFilesUnchanged,
                 SourcePath = SourcePath,
                 SubType = SubType,
                 Type = Type,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }