public override bool Equals()

in src/Apache.IoTDB/Rpc/Generated/TSInsertTabletReq.cs [442:456]


  public override bool Equals(object that)
  {
    if (!(that is TSInsertTabletReq 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)
      && TCollections.Equals(Timestamps, other.Timestamps)
      && TCollections.Equals(Types, other.Types)
      && System.Object.Equals(Size, other.Size)
      && ((__isset.isAligned == other.__isset.isAligned) && ((!__isset.isAligned) || (System.Object.Equals(IsAligned, other.IsAligned))))
      && ((__isset.writeToTable == other.__isset.writeToTable) && ((!__isset.writeToTable) || (System.Object.Equals(WriteToTable, other.WriteToTable))))
      && ((__isset.columnCategories == other.__isset.columnCategories) && ((!__isset.columnCategories) || (TCollections.Equals(ColumnCategories, other.ColumnCategories))));
  }