in src/Apache.IoTDB/Rpc/Generated/TSInsertRecordReq.cs [309:319]
public override bool Equals(object that)
{
if (!(that is TSInsertRecordReq other)) return false;
if (ReferenceEquals(this, other)) return true;
return System.Object.Equals(SessionId, other.SessionId)
&& System.Object.Equals(PrefixPath, other.PrefixPath)
&& TCollections.Equals(Measurements, other.Measurements)
&& TCollections.Equals(Values, other.Values)
&& System.Object.Equals(Timestamp, other.Timestamp)
&& ((__isset.isAligned == other.__isset.isAligned) && ((!__isset.isAligned) || (System.Object.Equals(IsAligned, other.IsAligned))));
}