in src/Apache.IoTDB/Rpc/Generated/TSBackupConfigurationResp.cs [230:238]
public override bool Equals(object that)
{
if (!(that is TSBackupConfigurationResp other)) return false;
if (ReferenceEquals(this, other)) return true;
return System.Object.Equals(Status, other.Status)
&& ((__isset.enableOperationSync == other.__isset.enableOperationSync) && ((!__isset.enableOperationSync) || (System.Object.Equals(EnableOperationSync, other.EnableOperationSync))))
&& ((__isset.secondaryAddress == other.__isset.secondaryAddress) && ((!__isset.secondaryAddress) || (System.Object.Equals(SecondaryAddress, other.SecondaryAddress))))
&& ((__isset.secondaryPort == other.__isset.secondaryPort) && ((!__isset.secondaryPort) || (System.Object.Equals(SecondaryPort, other.SecondaryPort))));
}