in services/library/src/main/java/com/google/cloud/pso/bq_snapshot_manager/entities/backup_policy/BackupPolicyAndState.java [110:115]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BackupPolicyAndState that = (BackupPolicyAndState) o;
return Objects.equal(policy, that.policy) && Objects.equal(state, that.state);
}