public override bool Equals()

in src/Apache.IoTDB/Rpc/Generated/TSpaceQuota.cs [197:204]


  public override bool Equals(object that)
  {
    if (!(that is TSpaceQuota other)) return false;
    if (ReferenceEquals(this, other)) return true;
    return ((__isset.diskSize == other.__isset.diskSize) && ((!__isset.diskSize) || (System.Object.Equals(DiskSize, other.DiskSize))))
      && ((__isset.deviceNum == other.__isset.deviceNum) && ((!__isset.deviceNum) || (System.Object.Equals(DeviceNum, other.DeviceNum))))
      && ((__isset.timeserieNum == other.__isset.timeserieNum) && ((!__isset.timeserieNum) || (System.Object.Equals(TimeserieNum, other.TimeserieNum))));
  }