partial         void CopyExtraPropertiesToClone(CreateExternalSystemLinkEnd clone, bool includeLocalProperties);
 public CreateExternalSystemLinkEnd Clone(bool includeLocalProperties)
 {
     var c = new CreateExternalSystemLinkEnd
             {
                 FieldValues = FieldValues,
                 Id = Id,
                 Key = Key,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }