partial         void CopyExtraPropertiesToClone(AutomatedTestRunAttachment clone, bool includeLocalProperties);
 public AutomatedTestRunAttachment Clone(bool includeLocalProperties)
 {
     var c = new AutomatedTestRunAttachment
             {
                 ContentType = ContentType,
                 CreatedAt = CreatedAt,
                 CreatedById = CreatedById,
                 FileName = FileName,
                 Id = Id,
                 Name = Name,
                 RunId = RunId,
                 Size = Size,
                 SourceId = SourceId,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }