in src/Apache.IoTDB/Rpc/Generated/TSInsertRecordsOfOneDeviceReq.cs [366:376]
public override bool Equals(object that)
{
if (!(that is TSInsertRecordsOfOneDeviceReq other)) return false;
if (ReferenceEquals(this, other)) return true;
return System.Object.Equals(SessionId, other.SessionId)
&& System.Object.Equals(PrefixPath, other.PrefixPath)
&& TCollections.Equals(MeasurementsList, other.MeasurementsList)
&& TCollections.Equals(ValuesList, other.ValuesList)
&& TCollections.Equals(Timestamps, other.Timestamps)
&& ((__isset.isAligned == other.__isset.isAligned) && ((!__isset.isAligned) || (System.Object.Equals(IsAligned, other.IsAligned))));
}