public override bool Equals()

in src/Apache.IoTDB/Rpc/Generated/TSInsertTabletReq.cs [390:402]


  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))));
  }