partial void CopyExtraPropertiesToClone(AutomatedTestingScheduleConfiguration clone, bool includeLocalProperties);
public AutomatedTestingScheduleConfiguration Clone(bool includeLocalProperties) { var c = new AutomatedTestingScheduleConfiguration { HourOfDay = HourOfDay, MinuteOfDay = MinuteOfDay, PeriodInMinutes = PeriodInMinutes, Type = Type, }; CopyExtraPropertiesToClone(c, includeLocalProperties); return c; }