in services/library/src/main/java/com/google/cloud/pso/bq_snapshot_manager/entities/backup_policy/BackupState.java [74:79]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BackupState that = (BackupState) o;
return Objects.equal(lastBackupAt, that.lastBackupAt) && Objects.equal(lastBqSnapshotStorageUri, that.lastBqSnapshotStorageUri) && Objects.equal(lastGcsSnapshotStorageUri, that.lastGcsSnapshotStorageUri);
}