partial         void CopyExtraPropertiesToClone(CreateOrUpdateIncidentComment clone, bool includeLocalProperties);
 public CreateOrUpdateIncidentComment Clone(bool includeLocalProperties)
 {
     var c = new CreateOrUpdateIncidentComment
             {
                 Body = Body,
                 CreatedAt = CreatedAt,
                 CreatedById = CreatedById,
                 Id = Id,
                 LastUpdatedAt = LastUpdatedAt,
                 LastUpdatedById = LastUpdatedById,
                 TicketCommentId = TicketCommentId,
             };
     CopyExtraPropertiesToClone(c, includeLocalProperties);
     return c;
 }