in src/Apache.IoTDB/Rpc/Generated/TSFetchMetadataResp.cs [272:280]
public override bool Equals(object that)
{
if (!(that is TSFetchMetadataResp other)) return false;
if (ReferenceEquals(this, other)) return true;
return System.Object.Equals(Status, other.Status)
&& ((__isset.metadataInJson == other.__isset.metadataInJson) && ((!__isset.metadataInJson) || (System.Object.Equals(MetadataInJson, other.MetadataInJson))))
&& ((__isset.columnsList == other.__isset.columnsList) && ((!__isset.columnsList) || (TCollections.Equals(ColumnsList, other.ColumnsList))))
&& ((__isset.dataType == other.__isset.dataType) && ((!__isset.dataType) || (System.Object.Equals(DataType, other.DataType))));
}