public override bool Equals()

in src/Apache.IoTDB/Rpc/Generated/TSInsertRecordsReq.cs [355:365]


  public override bool Equals(object that)
  {
    if (!(that is TSInsertRecordsReq other)) return false;
    if (ReferenceEquals(this, other)) return true;
    return System.Object.Equals(SessionId, other.SessionId)
      && TCollections.Equals(PrefixPaths, other.PrefixPaths)
      && 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))));
  }