public boolean equals()

in services/library/src/main/java/com/google/cloud/pso/bq_snapshot_manager/functions/f04_tagger/TaggerRequest.java [78:84]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        if (!super.equals(o)) return false;
        TaggerRequest that = (TaggerRequest) o;
        return Objects.equal(backupPolicyAndState, that.backupPolicyAndState) && appliedBackupMethod == that.appliedBackupMethod && Objects.equal(bigQuerySnapshotTableSpec, that.bigQuerySnapshotTableSpec) && Objects.equal(gcsSnapshotUri, that.gcsSnapshotUri) && Objects.equal(lastBackUpAt, that.lastBackUpAt);
    }