public virtual bool Equals()

in csharp/Microsoft.Azure.Databricks.Client/Models/StatementExecution.cs [433:443]


    public virtual bool Equals(StatementExecutionManifest other)
    {
        return other is not null
            && Format.Equals(other.Format)
            && Schema.Equals(other.Schema)
            && TotalChunkCount == other.TotalChunkCount
            && Chunks.SequenceEqual(other.Chunks)
            && TotalRowCount == other.TotalRowCount
            && TotalByteCount == other.TotalByteCount
            && Truncated == other.Truncated;
    }