in services/library/src/main/java/com/google/cloud/pso/bq_snapshot_manager/functions/f01_dispatcher/BigQueryScope.java [88:99]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BigQueryScope that = (BigQueryScope) o;
return Objects.equals(getFolderIncludeList(), that.getFolderIncludeList()) &&
Objects.equals(getProjectIncludeList(), that.getProjectIncludeList()) &&
Objects.equals(getProjectExcludeList(), that.getProjectExcludeList()) &&
Objects.equals(getDatasetIncludeList(), that.getDatasetIncludeList()) &&
Objects.equals(getDatasetExcludeList(), that.getDatasetExcludeList()) &&
Objects.equals(getTableIncludeList(), that.getTableIncludeList()) &&
Objects.equals(getTableExcludeList(), that.getTableExcludeList());
}